From d680b609a09c27089be70f2cc237e04f7a5a0371 Mon Sep 17 00:00:00 2001 From: Maxime LUCE Date: Fri, 6 Sep 2013 19:30:52 +0200 Subject: [PATCH] Append prevUntil and nextUntil override accepting JQuery for first arguments --- jquery/jquery.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index 03cf993e57..99969f710e 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -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;