lacks return-type annotation, implicitly has an 'any' return type

Fix for tsc with 'noImplicitAny' option
This commit is contained in:
Ralf Stich
2016-03-16 10:14:48 +01:00
parent 94707bfe8e
commit 45647c4f49

View File

@@ -4,9 +4,9 @@ export declare class Swiper {
activeIndex: number;
isEnd: boolean;
isBeginning: boolean;
update();
slideNext();
slidePrev();
}
update():any;
slideNext():any;
slidePrev():any;
}