Files
ionic-framework/ionic/components/slides/swiper-widget.d.ts
Ralf Stich 45647c4f49 lacks return-type annotation, implicitly has an 'any' return type
Fix for tsc with 'noImplicitAny' option
2016-03-16 10:14:48 +01:00

13 lines
235 B
TypeScript

export declare class Swiper {
constructor(container: HTMLElement, params: any);
slides: Array<HTMLElement>;
activeIndex: number;
isEnd: boolean;
isBeginning: boolean;
update():any;
slideNext():any;
slidePrev():any;
}