From 2e8798ea1590d5d931684cf78320da6a0fe0d1ae Mon Sep 17 00:00:00 2001 From: Per Kastman Date: Fri, 18 Apr 2014 12:15:24 +0200 Subject: [PATCH] Added AMD support --- domready/domready.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/domready/domready.d.ts b/domready/domready.d.ts index c951f9397..14ba14011 100644 --- a/domready/domready.d.ts +++ b/domready/domready.d.ts @@ -3,4 +3,8 @@ // Definitions by: Christian Holm Nielsen // Definitions: https://github.com/borisyankov/DefinitelyTyped -declare function domready(callback: () => any) : void; \ No newline at end of file +declare function domready(callback: () => any) : void; + +declare module "domready" { + export = domready; +}