grid.d.ts 441 B

123456789101112131415161718192021
  1. export interface GridMethods {}
  2. export interface GridEvents {}
  3. export interface GridOptions {
  4. /**
  5. * Number of slides rows, for multirow layout
  6. *
  7. * @note `rows` > 1 is currently not compatible with loop mode (`loop: true`)
  8. *
  9. * @default 1
  10. */
  11. rows?: number;
  12. /**
  13. * Can be `'column'` or `'row'`. Defines how slides should fill rows, by column or by row
  14. *
  15. * @default 'column'
  16. */
  17. fill?: 'row' | 'column';
  18. }