From 70d3f2c394e3713772ddf3bbc7b3e45237861ba5 Mon Sep 17 00:00:00 2001 From: Janus Schmidt Date: Sun, 25 Aug 2013 21:27:18 +0200 Subject: [PATCH] Update jquery.d.ts Fix error "Generic type references must include all type arguments." that gets thrown in typescript 0.9.1.1 --- jquery/jquery.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index 8e3ee3a3e8..ccd5e33649 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -488,7 +488,7 @@ interface JQuery { removeData(nameOrList?: any): JQuery; // Deferred - promise(type?: any, target?: any): JQueryPromise; + promise(type?: any, target?: any): JQueryPromise; // Effects animate(properties: any, duration?: any, complete?: Function): JQuery;