@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 +1 -1
- lodash/common/array.d.ts +1 -1
- lodash/common/common.d.ts +8 -0
- lodash/common/lang.d.ts +0 -2
- lodash/fp.d.ts +223 -220
- lodash/multiply.d.ts +1 -1
- lodash/package.json +2 -2
- lodash/ts3.1/common/array.d.ts +1 -1
- lodash/ts3.1/common/lang.d.ts +1 -2
lodash/multiply.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { multiply } from
|
|
1
|
+
import { multiply } from "./index";
|
|
2
2
|
export = multiply;
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.155",
|
|
4
4
|
"description": "TypeScript definitions for Lo-Dash",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
},
|
|
67
67
|
"scripts": {},
|
|
68
68
|
"dependencies": {},
|
|
69
|
-
"typesPublisherContentHash": "
|
|
69
|
+
"typesPublisherContentHash": "b99bf15473b1173ed78ce858997cc6375bf19f78ae74141ab5717be45b00735c",
|
|
70
70
|
"typeScriptVersion": "3.0"
|
|
71
71
|
}
|
lodash/ts3.1/common/array.d.ts
CHANGED
|
@@ -771,7 +771,7 @@ declare module "../index" {
|
|
|
771
771
|
/**
|
|
772
772
|
* @see _.intersectionWith
|
|
773
773
|
*/
|
|
774
|
-
intersectionWith<T>(array?: List<T> | null, ...values: Array<List<T>>): T[];
|
|
774
|
+
intersectionWith<T>(array?: List<T> | null, ...values: Array<List<T> | Comparator2<T, never>>): T[];
|
|
775
775
|
}
|
|
776
776
|
interface Collection<T> {
|
|
777
777
|
/**
|
lodash/ts3.1/common/lang.d.ts
CHANGED
|
@@ -838,7 +838,6 @@ declare module "../index" {
|
|
|
838
838
|
isMap(): PrimitiveChain<boolean>;
|
|
839
839
|
}
|
|
840
840
|
|
|
841
|
-
type isMatchCustomizer = (value: any, other: any, indexOrKey?: PropertyName) => boolean;
|
|
842
841
|
interface LoDashStatic {
|
|
843
842
|
/**
|
|
844
843
|
* Performs a deep comparison between `object` and `source` to determine if
|
|
@@ -875,7 +874,7 @@ declare module "../index" {
|
|
|
875
874
|
isMatch(source: object): PrimitiveChain<boolean>;
|
|
876
875
|
}
|
|
877
876
|
|
|
878
|
-
type isMatchWithCustomizer = (value: any, other: any, indexOrKey: PropertyName, object: object, source: object) => boolean;
|
|
877
|
+
type isMatchWithCustomizer = (value: any, other: any, indexOrKey: PropertyName, object: object, source: object) => boolean | undefined;
|
|
879
878
|
interface LoDashStatic {
|
|
880
879
|
/**
|
|
881
880
|
* This method is like `_.isMatch` except that it accepts `customizer` which
|