mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-22 20:37:58 +08:00
16 lines
399 B
TypeScript
16 lines
399 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/borisyankov/DefinitelyTyped
|
|
|
|
declare module "domReady" {
|
|
interface DomReady {
|
|
(callback: () => any): DomReady;
|
|
version: string;
|
|
}
|
|
|
|
let domReady: DomReady;
|
|
|
|
export = domReady;
|
|
}
|