UNPKG

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