repeatMatrix.d.ts 329 B

12345678
  1. import { CompositionComponent as CC } from '../runtime';
  2. import { RepeatMatrixComposition } from '../spec';
  3. export type RepeatMatrixOptions = Omit<RepeatMatrixComposition, 'type'>;
  4. /**
  5. * @todo Layout mode: layer, row, col...
  6. * @todo Specify show axis or not.
  7. */
  8. export declare const RepeatMatrix: CC<RepeatMatrixComposition>;