@types/lodash 4.14.167 → 4.14.168

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.
Files changed (3) hide show
  1. lodash/README.md +1 -1
  2. lodash/fp.d.ts +1 -1
  3. lodash/package.json +3 -3
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: Fri, 01 Jan 2021 17:20:08 GMT
11
+ * Last updated: Mon, 18 Jan 2021 15:06:13 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `_`
14
14
 
lodash/fp.d.ts CHANGED
@@ -299,7 +299,7 @@ declare namespace _ {
299
299
  <TResult>(customizer: lodash.CloneWithCustomizer<T, TResult | undefined>): TResult | T;
300
300
  }
301
301
  type LodashCloneWith2x1<T, TResult> = (value: T) => TResult | T;
302
- type LodashCompact = <T>(array: lodash.List<T | null | undefined | false | "" | 0> | null | undefined) => T[];
302
+ type LodashCompact = <T>(array: lodash.List<T> | null | undefined) => Array<Exclude<T, null | undefined | false | "" | 0>>;
303
303
  type LodashNegate = <T extends any[]>(predicate: (...args: T) => any) => (...args: T) => boolean;
304
304
  interface LodashFlowRight {
305
305
  <A extends any[], R1, R2, R3, R4, R5, R6, R7>(f7: (a: R6) => R7, f6: (a: R5) => R6, f5: (a: R4) => R5, f4: (a: R3) => R4, f3: (a: R2) => R3, f2: (a: R1) => R2, f1: (...args: A) => R1): (...args: A) => R7;
lodash/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/lodash",
3
- "version": "4.14.167",
3
+ "version": "4.14.168",
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": "6dc65af7bce63d6ebaef9ae76e947a854213ab48187d0506773ce09d3fc6eb2a",
63
- "typeScriptVersion": "3.3"
62
+ "typesPublisherContentHash": "4829f7ac23028c3eca917a9fb612e9b559d688639097c176e090c09ccee48261",
63
+ "typeScriptVersion": "3.4"
64
64
  }