@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 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: Wed, 22 Jul 2020 01:30:27 GMT
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
@@ -1447,7 +1447,7 @@ declare module "../index" {
1447
1447
  * _.isSymbol('abc');
1448
1448
  * // => false
1449
1449
  */
1450
- isSymbol(value: any): boolean;
1450
+ isSymbol(value: any): value is symbol;
1451
1451
  }
1452
1452
 
1453
1453
  interface LoDashImplicitWrapper<TValue> {
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) => boolean;
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.158",
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": "1c6d03bf20bb332472efaa1c77eec2d58eb24310dd15e34499951d9872de03e2",
69
+ "typesPublisherContentHash": "60ce11a3ae923ba7d91fba7f43d2fcdaf44cbf2f0da7b89d2849a01c3d74283d",
70
70
  "typeScriptVersion": "3.0"
71
71
  }
@@ -1250,7 +1250,7 @@ declare module "../index" {
1250
1250
  * _.isSymbol('abc');
1251
1251
  * // => false
1252
1252
  */
1253
- isSymbol(value: any): boolean;
1253
+ isSymbol(value: any): value is symbol;
1254
1254
  }
1255
1255
  interface LoDashImplicitWrapper<TValue> {
1256
1256
  /**
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) => boolean;
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>;