Files
DefinitelyTyped/types/requirejs-domready/index.d.ts
2017-03-24 14:27:52 -07:00

16 lines
359 B
TypeScript

// Type definitions for domReady 2.0.1
// Project: https://github.com/requirejs/domReady
// Definitions by: Nobuhiro Nakamura <https://github.com/lefb766>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface DomReady {
(callback: () => any): DomReady;
version: string;
}
declare var domReady: DomReady;
export = domReady;