Merge pull request #583 from ggergo74/FixTypedef
Add explicit void to typedef functions
This commit is contained in:
commit
f811bbcab5
6
perfect-scrollbar.d.ts
vendored
6
perfect-scrollbar.d.ts
vendored
@ -13,9 +13,9 @@ interface PerfectScrollbarOptions {
|
||||
}
|
||||
|
||||
interface PerfectScrollbar {
|
||||
initialize(container: HTMLElement, options?: PerfectScrollbarOptions);
|
||||
update(container: HTMLElement);
|
||||
destroy(container: HTMLElement);
|
||||
initialize(container: HTMLElement, options?: PerfectScrollbarOptions): void;
|
||||
update(container: HTMLElement): void;
|
||||
destroy(container: HTMLElement): void;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
|
Loading…
Reference in New Issue
Block a user