swiper-controller.d.ts 531B

123456789
  1. import { Slides } from '../slides';
  2. import { Platform } from '../../../platform/platform';
  3. export declare const SWIPER_CONTROLLER: {
  4. LinearSpline: (_s: Slides, _platform: Platform, x: any, y: any) => void;
  5. getInterpolateFunction: (s: Slides, plt: Platform, c: Slides) => void;
  6. setTranslate: (s: Slides, plt: Platform, translate: number, byController: Slides, setWrapperTranslate: any) => void;
  7. setTransition: (s: Slides, plt: Platform, duration: number, byController: Slides, setWrapperTransition: any) => void;
  8. };