@types/lodash 4.14.150 → 4.14.154
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/fp.d.ts +223 -220
- lodash/multiply.d.ts +1 -1
- lodash/package.json +3 -3
- lodash/ts3.1/common/array.d.ts +1 -1
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.154",
|
|
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": "
|
|
70
|
-
"typeScriptVersion": "
|
|
69
|
+
"typesPublisherContentHash": "5ce4a97b89131547e1d0ea16853808a3d85ec071aa1eb7b29b51d4179be9a141",
|
|
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
|
/**
|