Add missing _.mapValues type definition

This commit is contained in:
Santi Albo
2014-03-10 18:46:25 +00:00
parent 760918b889
commit a8115c9191
+12
View File
@@ -3457,6 +3457,18 @@ declare module _ {
keys(object: any): string[];
}
//_.mapValues
interface LodashStatic {
mapValues<Mapped, T>(
object: any,
callback: ObjectIterator<any, any>,
thisArg?: any): Mapped;
mapValues<Mapped, T>(
object: any,
pluckValue: string): Mapped;
}
//_.merge
interface LoDashStatic {
/**