diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index dac7a26ed..9f186f433 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -3476,12 +3476,12 @@ declare module _ { * @return Returns a new object with values of the results of each callback execution. */ mapValues( - object: any, + object: T, callback: ObjectIterator, thisArg?: any): Mapped; mapValues( - object: any, + object: T, pluckValue: string): Mapped; }