From f1503e8c69ad588bda3c0b74b3c328588edab9ef Mon Sep 17 00:00:00 2001 From: John Reilly Date: Wed, 22 Jan 2014 13:31:35 +0000 Subject: [PATCH] jQuery: JSDoc each and contains --- jquery/jquery.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index 14e74bb30..3c4220c15 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -888,7 +888,10 @@ interface JQueryStatic { * @param collection The object or array to iterate over. * @param callback The function that will be executed on every object. */ - each(collection: any, callback: (indexInArray: any, valueOfElement: any) => any): any; + each( + collection: any, + callback: (indexInArray: any, valueOfElement: any) => any + ): any; extend(target: any, ...objs: any[]): any; extend(deep: boolean, target: any, ...objs: any[]): any;