Update jquery.d.ts

Fix error "Generic type references must include all type arguments."
that gets thrown in typescript 0.9.1.1
This commit is contained in:
Janus Schmidt 2013-08-25 21:27:18 +02:00
parent da107056f5
commit 70d3f2c394

2
jquery/jquery.d.ts vendored
View File

@ -488,7 +488,7 @@ interface JQuery {
removeData(nameOrList?: any): JQuery;
// Deferred
promise(type?: any, target?: any): JQueryPromise;
promise(type?: any, target?: any): JQueryPromise<any>;
// Effects
animate(properties: any, duration?: any, complete?: Function): JQuery;