@types/lodash 4.17.23 → 4.17.24

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: Sat, 10 Jan 2026 11:33:13 GMT
11
+ * Last updated: Mon, 23 Feb 2026 05:30:26 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
lodash/common/array.d.ts CHANGED
@@ -1784,6 +1784,28 @@ declare module "../index" {
1784
1784
  * @param array The array of grouped elements to process.
1785
1785
  * @return Returns the new array of regrouped elements.
1786
1786
  */
1787
+ unzip<T1, T2>(array: Array<[T1, T2]>): [T1[], T2[]];
1788
+ /**
1789
+ * @see _.unzip
1790
+ */
1791
+ unzip<T1, T2, T3>(
1792
+ array: Array<[T1, T2, T3]>,
1793
+ ): [T1[], T2[], T3[]];
1794
+ /**
1795
+ * @see _.unzip
1796
+ */
1797
+ unzip<T1, T2, T3, T4>(
1798
+ array: Array<[T1, T2, T3, T4]>,
1799
+ ): [T1[], T2[], T3[], T4[]];
1800
+ /**
1801
+ * @see _.unzip
1802
+ */
1803
+ unzip<T1, T2, T3, T4, T5>(
1804
+ array: Array<[T1, T2, T3, T4, T5]>,
1805
+ ): [T1[], T2[], T3[], T4[], T5[]];
1806
+ /**
1807
+ * @see _.unzip
1808
+ */
1787
1809
  unzip<T>(array: T[][] | List<List<T>> | null | undefined): T[][];
1788
1810
  }
1789
1811
  interface Collection<T> {
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.17.23",
3
+ "version": "4.17.24",
4
4
  "description": "TypeScript definitions for lodash",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",
6
6
  "license": "MIT",
@@ -51,6 +51,6 @@
51
51
  "scripts": {},
52
52
  "dependencies": {},
53
53
  "peerDependencies": {},
54
- "typesPublisherContentHash": "4e6b7244f8813f1ce6f4daf4db6e5ba8e50619aebcdb439ee653b18f5c7c919a",
54
+ "typesPublisherContentHash": "6d5f9d074e23fea95ae8ef8f188116218dbc1b67c538bd01d89810cceb550268",
55
55
  "typeScriptVersion": "5.2"
56
56
  }