swiper.d.ts 703 B

123456789101112131415161718192021222324252627
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class Swiper extends SuperComponent {
  3. externalClasses: string[];
  4. options: {
  5. multipleSlots: boolean;
  6. };
  7. properties: import("./type").TdSwiperProps;
  8. observers: {
  9. navCurrent(v: any): void;
  10. };
  11. $nav: any;
  12. relations: RelationsOptions;
  13. data: {
  14. prefix: string;
  15. classPrefix: string;
  16. };
  17. lifetimes: {
  18. ready(): void;
  19. };
  20. methods: {
  21. updateNav(currentValue: any): void;
  22. onTap(e: any): void;
  23. onChange(e: any): void;
  24. onNavBtnChange(e: any): void;
  25. doNavBtnChange(dir: any, source: any): void;
  26. };
  27. }