effect-flip.d.ts 530 B

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