Add jQuery return type for css() method

This commit is contained in:
Boris Yankov
2012-11-09 19:58:36 +02:00
parent f8f335fbf3
commit d174202408
+2 -2
View File
@@ -367,8 +367,8 @@ interface JQuery {
/***
CSS
****/
css(propertyName: string, value?: any);
css(propertyName: any, value?: any);
css(propertyName: string, value?: any): any;
css(propertyName: any, value?: any): any;
height(): number;
height(value: number): JQuery;