Fix the argument type of JQuery.html

This commit is contained in:
seikichi
2013-08-03 23:53:48 +09:00
parent 6140c736a9
commit d335c0339b
+1 -1
View File
@@ -411,7 +411,7 @@ interface JQuery {
html(): string;
html(htmlString: string): JQuery;
html(htmlContent: (index: number, oldhtml: string) => string): JQuery;
html(JQuery): JQuery;
html(obj: JQuery): JQuery;
prop(propertyName: string): any;
prop(propertyName: string, value: any): JQuery;