UNPKG

530 BTypeScriptView Raw
1import { CSSSelector } from '../shared';
2
3export interface FlipEffectMethods {}
4
5export interface FlipEffectEvents {}
6
7export interface FlipEffectOptions {
8 /**
9 * Enables slides shadows
10 *
11 * @default true
12 */
13 slideShadows?: boolean;
14 /**
15 * Limit edge slides rotation
16 *
17 * @default true
18 */
19 limitRotation?: boolean;
20 /**
21 * CSS selector of the element inside of the slide to transform instead of the slide itself. Useful to use with cssMode
22 *
23 * @default null
24 */
25 transformEl?: CSSSelector;
26}