From dca457aa7193072d75c295e974e53228739756fc Mon Sep 17 00:00:00 2001 From: Santi Albo Date: Tue, 11 Mar 2014 10:12:49 +0000 Subject: [PATCH] Use generic parameter --- 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 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; }