@types/lodash 4.17.22 → 4.17.23
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 +1 -1
- lodash/common/array.d.ts +3 -3
- lodash/package.json +2 -2
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
|
+
* Last updated: Sat, 10 Jan 2026 11:33:13 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> |
|
|
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> |
|
|
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> |
|
|
803
|
+
intersectionWith(...values: Array<List<unknown> | Comparator<T>>): CollectionChain<T>;
|
|
804
804
|
}
|
|
805
805
|
interface LoDashStatic {
|
|
806
806
|
/**
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.17.
|
|
3
|
+
"version": "4.17.23",
|
|
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": "
|
|
54
|
+
"typesPublisherContentHash": "4e6b7244f8813f1ce6f4daf4db6e5ba8e50619aebcdb439ee653b18f5c7c919a",
|
|
55
55
|
"typeScriptVersion": "5.2"
|
|
56
56
|
}
|