@types/lodash 4.14.193 → 4.14.195
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/collection.d.ts +1 -1
- lodash/common/common.d.ts +1 -1
- lodash/package.json +2 -2
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: Thu, 25 May 2023 20:34:17 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/collection.d.ts
CHANGED
|
@@ -1309,7 +1309,7 @@ declare module "../index" {
|
|
|
1309
1309
|
* @param collection The collection to iterate over.
|
|
1310
1310
|
* @param [iteratees=[_.identity]] The iteratees to sort by.
|
|
1311
1311
|
* @param [orders] The sort orders of `iteratees`.
|
|
1312
|
-
* @param
|
|
1312
|
+
* @param [guard] Enables use as an iteratee for functions like `_.reduce`.
|
|
1313
1313
|
* @returns Returns the new sorted array.
|
|
1314
1314
|
* @example
|
|
1315
1315
|
*
|
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> = PropertyName | [PropertyName, 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.195",
|
|
4
4
|
"description": "TypeScript definitions for Lo-Dash",
|
|
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": "
|
|
58
|
+
"typesPublisherContentHash": "511fee61d6ee9c65fa58c2adfea8692c665eba179542b7f18eebfa3f216e5972",
|
|
59
59
|
"typeScriptVersion": "4.3"
|
|
60
60
|
}
|