From a8115c9191d174fa978f89c40470ffa886f04ab0 Mon Sep 17 00:00:00 2001 From: Santi Albo Date: Mon, 10 Mar 2014 18:46:25 +0000 Subject: [PATCH] Add missing _.mapValues type definition --- lodash/lodash.d.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index b48f7e603..1fda4516e 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -3457,6 +3457,18 @@ declare module _ { keys(object: any): string[]; } + //_.mapValues + interface LodashStatic { + mapValues( + object: any, + callback: ObjectIterator, + thisArg?: any): Mapped; + + mapValues( + object: any, + pluckValue: string): Mapped; + } + //_.merge interface LoDashStatic { /**