Files
DefinitelyTyped/domready/domready.d.ts
Bart van der Schoor 3d64ea7395 added missing urls to some authors
fixed node urls
2014-06-18 23:31:35 +02:00

11 lines
334 B
TypeScript

// Type definitions for domready
// Project: https://github.com/ded/domready
// Definitions by: Christian Holm Nielsen <https://github.com/dotnetnerd>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare function domready(callback: () => any) : void;
declare module "domready" {
export = domready;
}