Added generic typing to jQuery.when

This commit is contained in:
Andrew Gaspar
2013-07-06 21:31:02 -07:00
parent 284f4a629a
commit 7e7fca5c55
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -265,7 +265,7 @@ interface JQueryStatic {
noConflict(removeAll?: boolean): Object;
when(...deferreds: any[]): JQueryPromise;
when<T>(...deferreds: T[]): JQueryPromise<T>;
// CSS
css(e: any, propertyName: string, value?: any);