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 {
|
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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user