mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-13 13:30:28 +00:00
fixed implicit return types
This commit is contained in:
Vendored
+4
-4
@@ -1,9 +1,9 @@
|
||||
interface $script {
|
||||
(paths:string | string[], idOrDone:string | (() => void), optDone?:() => void): $script;
|
||||
get(path:string, fn:() => void);
|
||||
order(scripts:string[], id:string, done:() => void);
|
||||
path(p:string);
|
||||
urlArts(str:string);
|
||||
get(path:string, fn:() => void): void;
|
||||
order(scripts:string[], id:string, done:() => void): void;
|
||||
path(p:string): void;
|
||||
urlArts(str:string): void;
|
||||
ready(deps:string | string[], ready:() => void, req?:(missing:string[]) => void): $script;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user