declarations
Version:
[](https://www.npmjs.com/package/declarations)
11 lines (8 loc) • 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;
}