@types/lodash 4.14.158 → 4.14.159
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/lang.d.ts +1 -1
- lodash/fp.d.ts +1 -1
- lodash/package.json +2 -2
- lodash/ts3.1/common/lang.d.ts +1 -1
- lodash/ts3.1/fp.d.ts +1 -1
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: Thu, 06 Aug 2020 00:37:52 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/lang.d.ts
CHANGED
lodash/fp.d.ts
CHANGED
|
@@ -2058,7 +2058,7 @@ declare namespace _ {
|
|
|
2058
2058
|
type LodashIsSafeInteger = (value: any) => boolean;
|
|
2059
2059
|
type LodashIsSet = (value: any) => value is Set<any>;
|
|
2060
2060
|
type LodashIsString = (value: any) => value is string;
|
|
2061
|
-
type LodashIsSymbol = (value: any) =>
|
|
2061
|
+
type LodashIsSymbol = (value: any) => value is symbol;
|
|
2062
2062
|
type LodashIsTypedArray = (value: any) => boolean;
|
|
2063
2063
|
type LodashIsUndefined = (value: any) => value is undefined;
|
|
2064
2064
|
type LodashIsWeakMap = (value: any) => value is WeakMap<object, any>;
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.159",
|
|
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": "60ce11a3ae923ba7d91fba7f43d2fcdaf44cbf2f0da7b89d2849a01c3d74283d",
|
|
70
70
|
"typeScriptVersion": "3.0"
|
|
71
71
|
}
|
lodash/ts3.1/common/lang.d.ts
CHANGED
lodash/ts3.1/fp.d.ts
CHANGED
|
@@ -1999,7 +1999,7 @@ declare namespace _ {
|
|
|
1999
1999
|
type LodashIsSafeInteger = (value: any) => boolean;
|
|
2000
2000
|
type LodashIsSet = (value: any) => value is Set<any>;
|
|
2001
2001
|
type LodashIsString = (value: any) => value is string;
|
|
2002
|
-
type LodashIsSymbol = (value: any) =>
|
|
2002
|
+
type LodashIsSymbol = (value: any) => value is symbol;
|
|
2003
2003
|
type LodashIsTypedArray = (value: any) => boolean;
|
|
2004
2004
|
type LodashIsUndefined = (value: any) => value is undefined;
|
|
2005
2005
|
type LodashIsWeakMap = (value: any) => value is WeakMap<object, any>;
|