mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
647 B
TypeScript
19 lines
647 B
TypeScript
// Type definitions for scriptjs
|
|
// Project: https://github.com/ded/script.js
|
|
// Definitions by: Steve Lam <https://github.com/ssttevee>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface $script {
|
|
(paths:string | string[], idOrDone:string | (() => void), optDone?:() => void): $script;
|
|
get(path:string, fn:() => void): void;
|
|
order(scripts:string[], id:string, done:() => void): void;
|
|
path(p:string): void;
|
|
urlArgs(str:string): void;
|
|
ready(deps:string | string[], ready:() => void, req?:(missing:string[]) => void): $script;
|
|
}
|
|
|
|
declare module 'scriptjs'{
|
|
var $script: $script;
|
|
export = $script;
|
|
}
|