From 0c88531646cc82c975ffec791e1003590deda5eb Mon Sep 17 00:00:00 2001 From: Philip Bulley Date: Fri, 28 Mar 2014 17:24:42 +0000 Subject: [PATCH] after() allows ZeptoCollection arg --- zepto/zepto.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zepto/zepto.d.ts b/zepto/zepto.d.ts index 10c1ff6d51..bc08565c2f 100644 --- a/zepto/zepto.d.ts +++ b/zepto/zepto.d.ts @@ -452,7 +452,7 @@ interface ZeptoCollection { /** * @see ZeptoCollection.after **/ - after(content: HTMLElement[]): ZeptoCollection; + after(content: ZeptoCollection): ZeptoCollection; /** * Append content to the DOM inside each individual element in the collection. The content can be an HTML string, a DOM node or an array of nodes.