Append prevUntil and nextUntil override accepting JQuery for first arguments

This commit is contained in:
Maxime LUCE
2013-09-06 19:30:52 +02:00
parent 4e668d8040
commit d680b609a0
+2
View File
@@ -774,6 +774,7 @@ interface JQuery {
nextUntil(selector?: string, filter?: string): JQuery;
nextUntil(element?: Element, filter?: string): JQuery;
nextUntil(obj?: JQuery, filter?: string): JQuery;
not(selector: string): JQuery;
not(func: (index: any) => any): JQuery;
@@ -796,6 +797,7 @@ interface JQuery {
prevUntil(selector?: string, filter?: string): JQuery;
prevUntil(element?: Element, filter?: string): JQuery;
prevUntil(obj?: JQuery, filter?: string): JQuery;
siblings(selector?: string): JQuery;