@types/lodash 4.14.151 → 4.14.155

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, 15 May 2020 10:01:06 GMT
11
+ * Last updated: Wed, 03 Jun 2020 15:24:03 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `_`
14
14
 
lodash/common/array.d.ts CHANGED
@@ -1341,7 +1341,7 @@ declare module "../index" {
1341
1341
  */
1342
1342
  intersectionWith<T>(
1343
1343
  array?: List<T> | null,
1344
- ...values: Array<List<T>>
1344
+ ...values: Array<List<T> | Comparator2<T, never>>
1345
1345
  ): T[];
1346
1346
  }
1347
1347
 
lodash/common/common.d.ts CHANGED
@@ -2,6 +2,14 @@ import _ = require("../index");
2
2
  // tslint:disable-next-line:strict-export-declare-modifiers
3
3
  type GlobalPartial<T> = Partial<T>;
4
4
  declare module "../index" {
5
+ interface ConvertOptions {
6
+ cap?: boolean;
7
+ curry?: boolean;
8
+ fixed?: boolean;
9
+ immutable?: boolean;
10
+ rearg?: boolean;
11
+ }
12
+
5
13
  type PartialObject<T> = GlobalPartial<T>;
6
14
  type Many<T> = T | ReadonlyArray<T>;
7
15
  interface LoDashStatic {
lodash/common/lang.d.ts CHANGED
@@ -978,8 +978,6 @@ declare module "../index" {
978
978
 
979
979
  // isMatch
980
980
 
981
- type isMatchCustomizer = (value: any, other: any, indexOrKey?: PropertyName) => boolean;
982
-
983
981
  interface LoDashStatic {
984
982
  /**
985
983
  * Performs a deep comparison between `object` and `source` to determine if