@types/lodash 4.14.135 → 4.14.136
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 +13 -8
- lodash/package.json +2 -2
- lodash/ts3.1/common/array.d.ts +4 -0
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:
|
|
11
|
+
* Last updated: Mon, 08 Jul 2019 17:01:52 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: _
|
|
14
14
|
|
lodash/common/array.d.ts
CHANGED
|
@@ -1205,6 +1205,11 @@ declare module "../index" {
|
|
|
1205
1205
|
array?: List<T> | null,
|
|
1206
1206
|
...values: Array<List<T>>
|
|
1207
1207
|
): T[];
|
|
1208
|
+
|
|
1209
|
+
/**
|
|
1210
|
+
* @see _.intersectionBy
|
|
1211
|
+
*/
|
|
1212
|
+
intersectionBy<T>(...values: Array<List<T> | ValueIteratee<T>>): T[];
|
|
1208
1213
|
}
|
|
1209
1214
|
|
|
1210
1215
|
interface LoDashImplicitWrapper<TValue> {
|
|
@@ -1240,10 +1245,10 @@ declare module "../index" {
|
|
|
1240
1245
|
/**
|
|
1241
1246
|
* @see _.intersectionBy
|
|
1242
1247
|
*/
|
|
1243
|
-
intersectionBy<
|
|
1244
|
-
this: LoDashImplicitWrapper<List<
|
|
1245
|
-
...values: Array<List<
|
|
1246
|
-
): LoDashImplicitWrapper<
|
|
1248
|
+
intersectionBy<T1, T2>(
|
|
1249
|
+
this: LoDashImplicitWrapper<List<T1> | null | undefined>,
|
|
1250
|
+
...values: Array<List<T2> | ValueIteratee<T1 | T2>>
|
|
1251
|
+
): LoDashImplicitWrapper<T1[]>;
|
|
1247
1252
|
}
|
|
1248
1253
|
|
|
1249
1254
|
interface LoDashExplicitWrapper<TValue> {
|
|
@@ -1279,10 +1284,10 @@ declare module "../index" {
|
|
|
1279
1284
|
/**
|
|
1280
1285
|
* @see _.intersectionBy
|
|
1281
1286
|
*/
|
|
1282
|
-
intersectionBy<
|
|
1283
|
-
this: LoDashExplicitWrapper<List<
|
|
1284
|
-
...values: Array<List<
|
|
1285
|
-
): LoDashExplicitWrapper<
|
|
1287
|
+
intersectionBy<T1, T2>(
|
|
1288
|
+
this: LoDashExplicitWrapper<List<T1> | null | undefined>,
|
|
1289
|
+
...values: Array<List<T2> | ValueIteratee<T1 | T2>>
|
|
1290
|
+
): LoDashExplicitWrapper<T1[]>;
|
|
1286
1291
|
}
|
|
1287
1292
|
|
|
1288
1293
|
// intersectionWith
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.136",
|
|
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": "49e57de9b1c4abec20efef9e4801bfc90a748adc96d2e58ee947a3874cd4d552",
|
|
70
70
|
"typeScriptVersion": "2.8"
|
|
71
71
|
}
|
lodash/ts3.1/common/array.d.ts
CHANGED
|
@@ -713,6 +713,10 @@ declare module "../index" {
|
|
|
713
713
|
* @see _.intersectionBy
|
|
714
714
|
*/
|
|
715
715
|
intersectionBy<T>(array?: List<T> | null, ...values: Array<List<T>>): T[];
|
|
716
|
+
/**
|
|
717
|
+
* @see _.intersectionBy
|
|
718
|
+
*/
|
|
719
|
+
intersectionBy<T>(...values: Array<List<T> | ValueIteratee<T>>): T[];
|
|
716
720
|
}
|
|
717
721
|
interface Collection<T> {
|
|
718
722
|
/**
|