Merge pull request #583 from ggergo74/FixTypedef

Add explicit void to typedef functions
This commit is contained in:
Jun 2016-11-08 00:46:36 +09:00 committed by GitHub
commit f811bbcab5

View File

@ -13,9 +13,9 @@ interface PerfectScrollbarOptions {
} }
interface PerfectScrollbar { interface PerfectScrollbar {
initialize(container: HTMLElement, options?: PerfectScrollbarOptions); initialize(container: HTMLElement, options?: PerfectScrollbarOptions): void;
update(container: HTMLElement); update(container: HTMLElement): void;
destroy(container: HTMLElement); destroy(container: HTMLElement): void;
} }
interface JQuery { interface JQuery {