@types/lodash 4.14.122 → 4.14.123

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: Mon, 04 Mar 2019 22:42:42 GMT
11
+ * Last updated: Mon, 11 Mar 2019 22:35:33 GMT
12
12
  * Dependencies: none
13
13
  * Global values: _
14
14
 
lodash/common/lang.d.ts CHANGED
@@ -1224,14 +1224,14 @@ declare module "../index" {
1224
1224
  * @param value The value to check.
1225
1225
  * @return Returns true if value is an object, else false.
1226
1226
  */
1227
- isObject(value?: any): boolean;
1227
+ isObject(value?: any): value is object;
1228
1228
  }
1229
1229
 
1230
1230
  interface LoDashImplicitWrapper<TValue> {
1231
1231
  /**
1232
1232
  * see _.isObject
1233
1233
  */
1234
- isObject(): boolean;
1234
+ isObject(): this is LoDashImplicitWrapper<object>;
1235
1235
  }
1236
1236
 
1237
1237
  interface LoDashExplicitWrapper<TValue> {
lodash/fp.d.ts CHANGED
@@ -1984,7 +1984,7 @@ declare namespace _ {
1984
1984
  type LodashIsNil = (value: any) => value is null | undefined;
1985
1985
  type LodashIsNull = (value: any) => value is null;
1986
1986
  type LodashIsNumber = (value: any) => value is number;
1987
- type LodashIsObject = (value: any) => boolean;
1987
+ type LodashIsObject = (value: any) => value is object;
1988
1988
  type LodashIsObjectLike = (value: any) => boolean;
1989
1989
  type LodashIsPlainObject = (value: any) => boolean;
1990
1990
  type LodashIsRegExp = (value: any) => value is RegExp;
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.14.122",
3
+ "version": "4.14.123",
4
4
  "description": "TypeScript definitions for Lo-Dash",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -59,6 +59,6 @@
59
59
  },
60
60
  "scripts": {},
61
61
  "dependencies": {},
62
- "typesPublisherContentHash": "f9ef5d346ee8015426be9faf8cae74064821c2dd5f3b1feca7597aa0026191d4",
62
+ "typesPublisherContentHash": "bdeec7442a915674b843e08eff1cacc9b9fc47c98c5d9091cff5e75f3ca98961",
63
63
  "typeScriptVersion": "2.8"
64
64
  }