Files
DefinitelyTyped/domready/domready.d.ts

11 lines
328 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/DefinitelyTyped/DefinitelyTyped
declare function domready(callback: () => any) : void;
declare module "domready" {
export = domready;
}