@types/lodash 4.17.4 → 4.17.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lodash/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for lodash (https://lodash.com).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Fri, 17 May 2024 02:16:49 GMT
11
+ * Last updated: Sat, 08 Jun 2024 07:07:49 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
lodash/common/object.d.ts CHANGED
@@ -1579,6 +1579,10 @@ declare module "../index" {
1579
1579
  * @return Returns the new mapped object.
1580
1580
  */
1581
1581
  mapValues<TResult>(obj: string | null | undefined, callback: StringIterator<TResult>): NumericDictionary<TResult>;
1582
+ /**
1583
+ * @see _.mapValues
1584
+ */
1585
+ mapValues<T, TResult>(array: T[], callback: ArrayIterator<T, TResult>): NumericDictionary<TResult>;
1582
1586
  /**
1583
1587
  * @see _.mapValues
1584
1588
  */
@@ -1634,7 +1638,7 @@ declare module "../index" {
1634
1638
  /**
1635
1639
  * @see _.mapValues
1636
1640
  */
1637
- mapValues<TResult>(callback: DictionaryIterator<T, TResult>): Object<Dictionary<TResult>>;
1641
+ mapValues<TResult>(callback: ArrayIterator<T, TResult>): NumericDictionary<TResult>;
1638
1642
  /**
1639
1643
  * @see _.mapValues
1640
1644
  */
@@ -1702,7 +1706,7 @@ declare module "../index" {
1702
1706
  /**
1703
1707
  * @see _.mapValues
1704
1708
  */
1705
- mapValues<TResult>(callback: DictionaryIterator<T, TResult>): ObjectChain<Dictionary<TResult>>;
1709
+ mapValues<TResult>(callback: ArrayIterator<T, TResult>): ObjectChain<NumericDictionary<TResult>>;
1706
1710
  /**
1707
1711
  * @see _.mapValues
1708
1712
  */
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.17.4",
3
+ "version": "4.17.5",
4
4
  "description": "TypeScript definitions for lodash",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",
6
6
  "license": "MIT",
@@ -55,6 +55,6 @@
55
55
  },
56
56
  "scripts": {},
57
57
  "dependencies": {},
58
- "typesPublisherContentHash": "29aeb85b95cd7d3be7579ea9938820eb2d06fcb68095fd735ad9abbbc5148766",
58
+ "typesPublisherContentHash": "74ebed2e7d6c57a170dd86cb86d1848722ce0a78369151c7ac087d43a7a6e2d5",
59
59
  "typeScriptVersion": "4.7"
60
60
  }