@types/lodash 4.14.172 → 4.14.173

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: Tue, 03 Aug 2021 08:31:20 GMT
11
+ * Last updated: Wed, 15 Sep 2021 23:31:22 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `_`
14
14
 
lodash/common/array.d.ts CHANGED
@@ -53,8 +53,7 @@ declare module "../index" {
53
53
  * and/or values.
54
54
  *
55
55
  * @category Array
56
- * @param array The array to concatenate.
57
- * @param [values] The values to concatenate.
56
+ * @param [values] The array values to concatenate.
58
57
  * @returns Returns the new concatenated array.
59
58
  * @example
60
59
  *
@@ -67,7 +66,7 @@ declare module "../index" {
67
66
  * console.log(array);
68
67
  * // => [1]
69
68
  */
70
- concat<T>(array: Many<T>, ...values: Array<Many<T>>): T[];
69
+ concat<T>(...values: Array<Many<T>>): T[];
71
70
  }
72
71
  interface Primitive<T> {
73
72
  /**
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.14.172",
3
+ "version": "4.14.173",
4
4
  "description": "TypeScript definitions for Lo-Dash",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",
6
6
  "license": "MIT",
@@ -60,6 +60,6 @@
60
60
  },
61
61
  "scripts": {},
62
62
  "dependencies": {},
63
- "typesPublisherContentHash": "c531bcff25b826bd15082a3163d719b3d8ad00653a0a5ce5503747ec39843008",
64
- "typeScriptVersion": "3.6"
63
+ "typesPublisherContentHash": "e6a7cb34030347d3af4d216d601100efa2aea687ca3a8ec76c9321c7299bf81f",
64
+ "typeScriptVersion": "3.7"
65
65
  }