@types/lodash 4.14.150 → 4.14.154
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/array.d.ts +1 -1
- lodash/common/common.d.ts +8 -0
- lodash/fp.d.ts +223 -220
- lodash/multiply.d.ts +1 -1
- lodash/package.json +3 -3
- lodash/ts3.1/common/array.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: Sat, 30 May 2020 11:19:02 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/array.d.ts
CHANGED
lodash/common/common.d.ts
CHANGED
|
@@ -2,6 +2,14 @@ import _ = require("../index");
|
|
|
2
2
|
// tslint:disable-next-line:strict-export-declare-modifiers
|
|
3
3
|
type GlobalPartial<T> = Partial<T>;
|
|
4
4
|
declare module "../index" {
|
|
5
|
+
interface ConvertOptions {
|
|
6
|
+
cap?: boolean;
|
|
7
|
+
curry?: boolean;
|
|
8
|
+
fixed?: boolean;
|
|
9
|
+
immutable?: boolean;
|
|
10
|
+
rearg?: boolean;
|
|
11
|
+
}
|
|
12
|
+
|
|
5
13
|
type PartialObject<T> = GlobalPartial<T>;
|
|
6
14
|
type Many<T> = T | ReadonlyArray<T>;
|
|
7
15
|
interface LoDashStatic {
|