Use generic parameter

This commit is contained in:
Santi Albo
2014-03-11 10:12:49 +00:00
parent 00aec5744b
commit dca457aa71
+2 -2
View File
@@ -3476,12 +3476,12 @@ declare module _ {
* @return Returns a new object with values of the results of each callback execution.
*/
mapValues<Mapped, T>(
object: any,
object: T,
callback: ObjectIterator<any, any>,
thisArg?: any): Mapped;
mapValues<Mapped, T>(
object: any,
object: T,
pluckValue: string): Mapped;
}