##// END OF EJS Templates
created typings for basic part of dojo and dijit further work is required to...
created typings for basic part of dojo and dijit further work is required to complete typings and separate them from this project dojo-typings replaced with @type/dojo, @type/dijit.

File last commit:

r2:8ec37bf1b4d1 default
r2:8ec37bf1b4d1 default
Show More
ready.d.ts
11 lines | 651 B | video/mp2t | TypeScriptLexer
cin
created typings for basic part of dojo and dijit further work is required to...
r2 /**
* Add a function to execute on DOM content loaded and all requested modules have arrived and been evaluated.
* In most cases, the `domReady` plug-in should suffice and this method should not be needed.
*
* When called in a non-browser environment, just checks that all requested modules have arrived and been
* evaluated.
*/
export declare function ready(callback: Function): void;
export declare function ready(context: Object, callback: Function | string): void;
export declare function ready(priority: number, callback: Function): void;
export declare function ready(priority: number, context: Object, callback: Function | string): void;