states.d.ts 605 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * Splide has been just created.
  3. */
  4. export declare const CREATED = 1;
  5. /**
  6. * Splide has mounted components.
  7. */
  8. export declare const MOUNTED = 2;
  9. /**
  10. * Splide is ready.
  11. */
  12. export declare const IDLE = 3;
  13. /**
  14. * Splide is moving.
  15. */
  16. export declare const MOVING = 4;
  17. /**
  18. * Splide has been destroyed.
  19. */
  20. export declare const DESTROYED = 5;
  21. /**
  22. * The collection of all states.
  23. *
  24. * @since 3.0.0
  25. */
  26. export declare const STATES: {
  27. CREATED: number;
  28. MOUNTED: number;
  29. IDLE: number;
  30. MOVING: number;
  31. DESTROYED: number;
  32. };
  33. //# sourceMappingURL=../../../src/js/constants/states.d.ts.map