UNPKG

301 BTypeScriptView Raw
1export interface FlipEffectMethods {}
2
3export interface FlipEffectEvents {}
4
5export interface FlipEffectOptions {
6 /**
7 * Enables slides shadows
8 *
9 * @default true
10 */
11 slideShadows?: boolean;
12 /**
13 * Limit edge slides rotation
14 *
15 * @default true
16 */
17 limitRotation?: boolean;
18}