initial-state.d.ts 856 B

12345678910111213141516171819202122232425262728293031
  1. export default initialState;
  2. declare namespace initialState {
  3. const animating: boolean;
  4. const autoplaying: any;
  5. const currentDirection: number;
  6. const currentLeft: any;
  7. const currentSlide: number;
  8. const direction: number;
  9. const dragging: boolean;
  10. const edgeDragged: boolean;
  11. const initialized: boolean;
  12. const lazyLoadedList: any[];
  13. const listHeight: any;
  14. const listWidth: any;
  15. const scrolling: boolean;
  16. const slideCount: any;
  17. const slideHeight: any;
  18. const slideWidth: any;
  19. const swipeLeft: any;
  20. const swiped: boolean;
  21. const swiping: boolean;
  22. namespace touchObject {
  23. const startX: number;
  24. const startY: number;
  25. const curX: number;
  26. const curY: number;
  27. }
  28. const trackStyle: {};
  29. const trackWidth: number;
  30. const targetSlide: number;
  31. }