mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-17 12:16:38 +08:00
16 lines
359 B
TypeScript
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;
|
|
|