.prop(propertyName) returns a string

This commit is contained in:
Tass Iliopoulos
2013-02-13 14:55:45 +11:00
parent 3d17d566c1
commit d2a6fbd6a1
+1 -1
View File
@@ -378,7 +378,7 @@ interface JQuery {
html(htmlString: string): JQuery;
html(htmlContent: (index: number, oldhtml: string) => string): JQuery;
prop(propertyName: string): any;
prop(propertyName: string): string;
prop(propertyName: string, value: any): JQuery;
prop(map: any): JQuery;
prop(propertyName: string, func: (index: any, oldPropertyValue: any) => any): JQuery;