@types/lodash 4.14.148 → 4.14.149
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/util.d.ts +2 -2
- lodash/package.json +2 -2
- lodash/ts3.1/common/util.d.ts +2 -2
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, 18 Nov 2019 20:34:51 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/util.d.ts
CHANGED
|
@@ -971,7 +971,7 @@ declare module "../index" {
|
|
|
971
971
|
overEvery<T, Result1 extends T, Result2 extends T>(
|
|
972
972
|
a: (arg: T) => arg is Result1,
|
|
973
973
|
b: (arg: T) => arg is Result2
|
|
974
|
-
): (arg: T) => Result1 & Result2;
|
|
974
|
+
): (arg: T) => arg is Result1 & Result2;
|
|
975
975
|
overEvery<T>(...predicates: Array<Many<(...args: T[]) => boolean>>): (...args: T[]) => boolean;
|
|
976
976
|
}
|
|
977
977
|
|
|
@@ -1002,7 +1002,7 @@ declare module "../index" {
|
|
|
1002
1002
|
overSome<T, Result1 extends T, Result2 extends T>(
|
|
1003
1003
|
a: (arg: T) => arg is Result1,
|
|
1004
1004
|
b: (arg: T) => arg is Result2
|
|
1005
|
-
): (arg: T) => Result1 | Result2;
|
|
1005
|
+
): (arg: T) => arg is Result1 | Result2;
|
|
1006
1006
|
overSome<T>(...predicates: Array<Many<(...args: T[]) => boolean>>): (...args: T[]) => boolean;
|
|
1007
1007
|
}
|
|
1008
1008
|
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.149",
|
|
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": "cf2d76aa6e460795bfbbd13377ea8f96ec6c6982d6bf45c1273aa0c47cb51975",
|
|
70
70
|
"typeScriptVersion": "2.8"
|
|
71
71
|
}
|
lodash/ts3.1/common/util.d.ts
CHANGED
|
@@ -755,7 +755,7 @@ declare module "../index" {
|
|
|
755
755
|
overEvery<T, Result1 extends T, Result2 extends T>(...predicates: [
|
|
756
756
|
(arg: T) => arg is Result1,
|
|
757
757
|
(arg: T) => arg is Result2
|
|
758
|
-
]): (arg: T) => Result1 & Result2;
|
|
758
|
+
]): (arg: T) => arg is Result1 & Result2;
|
|
759
759
|
overEvery<T>(...predicates: Array<Many<(...args: T[]) => boolean>>): (...args: T[]) => boolean;
|
|
760
760
|
}
|
|
761
761
|
interface Collection<T> {
|
|
@@ -794,7 +794,7 @@ declare module "../index" {
|
|
|
794
794
|
overSome<T, Result1 extends T, Result2 extends T>(...predicates: [
|
|
795
795
|
(arg: T) => arg is Result1,
|
|
796
796
|
(arg: T) => arg is Result2
|
|
797
|
-
]): (arg: T) => Result1 | Result2;
|
|
797
|
+
]): (arg: T) => arg is Result1 | Result2;
|
|
798
798
|
overSome<T>(...predicates: Array<Many<(...args: T[]) => boolean>>): (...args: T[]) => boolean;
|
|
799
799
|
}
|
|
800
800
|
interface Collection<T> {
|