Update options to use interface instead of any

This commit is contained in:
Brian Surowiec
2017-04-04 18:56:23 -04:00
committed by GitHub
parent 742cb488d6
commit a83d90b89c
+1 -1
View File
@@ -58,5 +58,5 @@ interface IOwlCarouselOptions {
}
interface JQuery {
owlCarousel(options?: any): JQuery;
owlCarousel(options?: IOwlCarouselOptions): JQuery;
}