@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/multiply.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import { multiply } from './index';
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.150",
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": "68b01f5f9bcc1dcc9bddb823eb263ec03434e7836363ccc4c55a6e433fef28a4",
70
- "typeScriptVersion": "2.8"
69
+ "typesPublisherContentHash": "5ce4a97b89131547e1d0ea16853808a3d85ec071aa1eb7b29b51d4179be9a141",
70
+ "typeScriptVersion": "3.0"
71
71
  }
@@ -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
  /**