@types/lodash 4.14.184 → 4.14.185

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: Fri, 19 Aug 2022 04:32:26 GMT
11
+ * Last updated: Sun, 11 Sep 2022 10:02:42 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `_`
14
14
 
lodash/common/object.d.ts CHANGED
@@ -2005,7 +2005,7 @@ declare module "../index" {
2005
2005
  /**
2006
2006
  * @see _.pick
2007
2007
  */
2008
- pick<T>(object: T | null | undefined, ...props: PropertyPath[]): PartialObject<T>;
2008
+ pick<T>(object: T | null | undefined, ...props: Array<Many<PropertyPath>>): PartialObject<T>;
2009
2009
  }
2010
2010
  interface Object<T> {
2011
2011
  /**
@@ -2015,7 +2015,7 @@ declare module "../index" {
2015
2015
  /**
2016
2016
  * @see _.pick
2017
2017
  */
2018
- pick(...props: PropertyPath[]): Object<PartialObject<T>>;
2018
+ pick(...props: Array<Many<PropertyPath>>): Object<PartialObject<T>>;
2019
2019
  }
2020
2020
  interface ObjectChain<T> {
2021
2021
  /**
@@ -2025,7 +2025,7 @@ declare module "../index" {
2025
2025
  /**
2026
2026
  * @see _.pick
2027
2027
  */
2028
- pick(...props: PropertyPath[]): ObjectChain<PartialObject<T>>;
2028
+ pick(...props: Array<Many<PropertyPath>>): ObjectChain<PartialObject<T>>;
2029
2029
  }
2030
2030
  interface LoDashStatic {
2031
2031
  /**
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.14.184",
3
+ "version": "4.14.185",
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": "b205954c7111cfa96de31dd77c5ff4bb53712b1c48ca6339b50692062eed2085",
59
- "typeScriptVersion": "4.0"
58
+ "typesPublisherContentHash": "11778b532d98495cbbe3cd4403bdc978257877a7ea8d951491d5ae27e53879a7",
59
+ "typeScriptVersion": "4.1"
60
60
  }