@types/lodash 4.17.22 → 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 07:34:05 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
@@ -780,7 +780,7 @@ declare module "../index" {
780
780
  /**
781
781
  * @see _.intersectionWith
782
782
  */
783
- intersectionWith<T>(array?: List<T> | null, ...values: Array<List<T> | Comparator2<T, never>>): T[];
783
+ intersectionWith<T>(array?: List<T> | null, ...values: Array<List<T> | Comparator<T>>): T[];
784
784
  }
785
785
  interface Collection<T> {
786
786
  /**
@@ -790,7 +790,7 @@ declare module "../index" {
790
790
  /**
791
791
  * @see _.intersectionWith
792
792
  */
793
- intersectionWith(...values: Array<List<unknown> | Comparator2<T, never>>): Collection<T>;
793
+ intersectionWith(...values: Array<List<unknown> | Comparator<T>>): Collection<T>;
794
794
  }
795
795
  interface CollectionChain<T> {
796
796
  /**
@@ -800,7 +800,7 @@ declare module "../index" {
800
800
  /**
801
801
  * @see _.intersectionWith
802
802
  */
803
- intersectionWith(...values: Array<List<unknown> | Comparator2<T, never>>): CollectionChain<T>;
803
+ intersectionWith(...values: Array<List<unknown> | Comparator<T>>): CollectionChain<T>;
804
804
  }
805
805
  interface LoDashStatic {
806
806
  /**
@@ -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.22",
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": "79603be9c422e70c74d5503a6eeaca0659fe855bd841ca38c21d78c0b80489ad",
54
+ "typesPublisherContentHash": "6d5f9d074e23fea95ae8ef8f188116218dbc1b67c538bd01d89810cceb550268",
55
55
  "typeScriptVersion": "5.2"
56
56
  }