@types/lodash 4.14.161 → 4.14.165

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: Sat, 29 Aug 2020 01:34:41 GMT
11
+ * Last updated: Thu, 05 Nov 2020 18:49:10 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `_`
14
14
 
@@ -529,7 +529,7 @@ declare module "../index" {
529
529
  * @return Returns the new memoizing function.
530
530
  */
531
531
  memoize: {
532
- <T extends (...args: any) => any>(func: T, resolver?: (...args: any[]) => any): T & MemoizedFunction;
532
+ <T extends (...args: any) => any>(func: T, resolver?: (...args: Parameters<T>) => any): T & MemoizedFunction;
533
533
  Cache: MapCacheConstructor;
534
534
  };
535
535
  }
lodash/common/lang.d.ts CHANGED
@@ -450,7 +450,6 @@ declare module "../index" {
450
450
  * // => false
451
451
  */
452
452
  isArrayLikeObject<T extends { __lodashAnyHack: any }>(value: T): boolean;
453
- // tslint:disable-next-line:ban-types (type guard doesn't seem to work correctly without the Function type)
454
453
  /**
455
454
  * @see _.isArrayLikeObject
456
455
  */
lodash/common/math.d.ts CHANGED
@@ -181,7 +181,7 @@ declare module "../index" {
181
181
 
182
182
  interface LoDashStatic {
183
183
  /**
184
- * Computes the mean of the provided propties of the objects in the `array`
184
+ * Computes the mean of the provided properties of the objects in the `array`
185
185
  *
186
186
  * @category Math
187
187
  * @param array The array to iterate over.
lodash/common/object.d.ts CHANGED
@@ -2263,7 +2263,7 @@ declare module "../index" {
2263
2263
  * @param accumulator The custom accumulator value.
2264
2264
  * @return Returns the accumulated value.
2265
2265
  */
2266
- transform<T, TResult>(object: T[], iteratee: MemoVoidArrayIterator<T, TResult>, accumulator?: TResult): TResult;
2266
+ transform<T, TResult>(object: ReadonlyArray<T>, iteratee: MemoVoidArrayIterator<T, TResult>, accumulator?: TResult): TResult;
2267
2267
  /**
2268
2268
  * @see _.transform
2269
2269
  */
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.14.161",
3
+ "version": "4.14.165",
4
4
  "description": "TypeScript definitions for Lo-Dash",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -59,6 +59,6 @@
59
59
  },
60
60
  "scripts": {},
61
61
  "dependencies": {},
62
- "typesPublisherContentHash": "011b5fc799b8be3807cea4d6cd1921b6cdbb3abdc85f4aeecabddac1c04927ee",
63
- "typeScriptVersion": "3.1"
62
+ "typesPublisherContentHash": "a0c674f8ec64ae7e57c9e07ebe509a5a0d5e2e54f46cf68da4b15596a19260b0",
63
+ "typeScriptVersion": "3.2"
64
64
  }