Merge pull request #92 from guyellis/master

Fix jQuery is() method return type.
This commit is contained in:
Boris Yankov
2012-11-22 01:45:22 -08:00

View File

@@ -688,10 +688,10 @@ interface JQuery {
has(selector: string): JQuery;
has(contained: Element): JQuery;
is(selector: string): JQuery;
is(func: (index: any) =>any): JQuery;
is(element: any): JQuery;
is(obj: JQuery): JQuery;
is(selector: string): bool;
is(func: (index: any) =>any): bool;
is(element: any): bool;
is(obj: JQuery): bool;
last(): JQuery;