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 { /**