mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Add missing _.mapValues type definition
This commit is contained in:
Vendored
+12
@@ -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 {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user