From f5d3448351c67e989b7ddc2d56284af6af14057e Mon Sep 17 00:00:00 2001 From: Brian Zengel Date: Sun, 20 Oct 2013 17:45:45 -0400 Subject: [PATCH] modified _.omit definition to use ObjectIterator interface --- lodash/lodash.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 3bababc3d..8745f4c0b 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -2636,9 +2636,9 @@ declare module _ { /** * @see _.omit **/ - export function omit( + export function omit( object: any, - callback: (value: any) => boolean, + callback: ObjectIterator, thisArg?: any): any; /**