From 137a5b8e4a2a343e051dc38462110a49affb5fa0 Mon Sep 17 00:00:00 2001 From: Eric Lu Date: Tue, 10 Feb 2015 10:51:53 -0800 Subject: [PATCH] Expose _.filter() in chained object wrapper --- lodash/lodash.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index 6085375c2..c8f7ad42d 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -2641,6 +2641,15 @@ declare module _ { whereValue: W): LoDashArrayWrapper; } + interface LoDashObjectWrapper { + /** + * @see _.filter + **/ + filter( + callback: ObjectIterator, + thisArg?: any): LoDashObjectWrapper; + } + //_.find interface LoDashStatic { /**