123456789101112131415161718192021222324252627 |
- import { SuperComponent, RelationsOptions } from '../common/src/index';
- export default class Swiper extends SuperComponent {
- externalClasses: string[];
- options: {
- multipleSlots: boolean;
- };
- properties: import("./type").TdSwiperProps;
- observers: {
- navCurrent(v: any): void;
- };
- $nav: any;
- relations: RelationsOptions;
- data: {
- prefix: string;
- classPrefix: string;
- };
- lifetimes: {
- ready(): void;
- };
- methods: {
- updateNav(currentValue: any): void;
- onTap(e: any): void;
- onChange(e: any): void;
- onNavBtnChange(e: any): void;
- doNavBtnChange(dir: any, source: any): void;
- };
- }
|