@types/lodash 4.14.191 → 4.14.192
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/common.d.ts +1 -1
- lodash/package.json +3 -3
lodash/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Lo-Dash (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:
|
|
11
|
+
* Last updated: Mon, 27 Mar 2023 18:33:36 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/common.d.ts
CHANGED
|
@@ -210,7 +210,7 @@ declare module "../index" {
|
|
|
210
210
|
interface PrimitiveChain<T> extends LoDashExplicitWrapper<T> {
|
|
211
211
|
}
|
|
212
212
|
type NotVoid = unknown;
|
|
213
|
-
type IterateeShorthand<T> =
|
|
213
|
+
type IterateeShorthand<T> = keyof T | [keyof T, any] | PartialShallow<T>;
|
|
214
214
|
type ArrayIterator<T, TResult> = (value: T, index: number, collection: T[]) => TResult;
|
|
215
215
|
type ListIterator<T, TResult> = (value: T, index: number, collection: List<T>) => TResult;
|
|
216
216
|
type ListIteratee<T> = ListIterator<T, NotVoid> | IterateeShorthand<T>;
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.192",
|
|
4
4
|
"description": "TypeScript definitions for Lo-Dash",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",
|
|
6
6
|
"license": "MIT",
|
|
@@ -62,6 +62,6 @@
|
|
|
62
62
|
},
|
|
63
63
|
"scripts": {},
|
|
64
64
|
"dependencies": {},
|
|
65
|
-
"typesPublisherContentHash": "
|
|
66
|
-
"typeScriptVersion": "4.
|
|
65
|
+
"typesPublisherContentHash": "53b97a0da94e1685b1066ed8e92b27caf8ceb82f99c157b2eb215dc9866a8d84",
|
|
66
|
+
"typeScriptVersion": "4.3"
|
|
67
67
|
}
|