@types/lodash 4.14.190 → 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 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: Wed, 23 Nov 2022 18:11:35 GMT
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> = PropertyName | [PropertyName, any] | PartialShallow<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.190",
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",
@@ -49,7 +49,7 @@
49
49
  "main": "",
50
50
  "types": "index.d.ts",
51
51
  "typesVersions": {
52
- "<4.3.0-0": {
52
+ "<=4.2": {
53
53
  "*": [
54
54
  "ts4.2/*"
55
55
  ]
@@ -62,6 +62,6 @@
62
62
  },
63
63
  "scripts": {},
64
64
  "dependencies": {},
65
- "typesPublisherContentHash": "5acc0c395309e22f8a3b4f1438a8a6f717d1b4db4011f03d4c8847fec72a5fe2",
66
- "typeScriptVersion": "4.1"
65
+ "typesPublisherContentHash": "53b97a0da94e1685b1066ed8e92b27caf8ceb82f99c157b2eb215dc9866a8d84",
66
+ "typeScriptVersion": "4.3"
67
67
  }