@types/lodash 4.14.170 → 4.14.171
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/common.d.ts +6 -6
- lodash/common/function.d.ts +5 -5
- lodash/common/string.d.ts +4 -4
- lodash/common/util.d.ts +1 -1
- lodash/package.json +4 -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:
|
|
11
|
+
* Last updated: Tue, 06 Jul 2021 22:02:44 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/common.d.ts
CHANGED
|
@@ -116,23 +116,23 @@ declare module "../index" {
|
|
|
116
116
|
/**
|
|
117
117
|
* The "escape" delimiter.
|
|
118
118
|
**/
|
|
119
|
-
escape?: RegExp;
|
|
119
|
+
escape?: RegExp | undefined;
|
|
120
120
|
/**
|
|
121
121
|
* The "evaluate" delimiter.
|
|
122
122
|
**/
|
|
123
|
-
evaluate?: RegExp;
|
|
123
|
+
evaluate?: RegExp | undefined;
|
|
124
124
|
/**
|
|
125
125
|
* An object to import into the template as local variables.
|
|
126
126
|
*/
|
|
127
|
-
imports?: Dictionary<any
|
|
127
|
+
imports?: Dictionary<any> | undefined;
|
|
128
128
|
/**
|
|
129
129
|
* The "interpolate" delimiter.
|
|
130
130
|
*/
|
|
131
|
-
interpolate?: RegExp;
|
|
131
|
+
interpolate?: RegExp | undefined;
|
|
132
132
|
/**
|
|
133
133
|
* Used to reference the data object in the template text.
|
|
134
134
|
*/
|
|
135
|
-
variable?: string;
|
|
135
|
+
variable?: string | undefined;
|
|
136
136
|
}
|
|
137
137
|
/**
|
|
138
138
|
* Creates a cache object to store key/value pairs.
|
|
@@ -166,7 +166,7 @@ declare module "../index" {
|
|
|
166
166
|
/**
|
|
167
167
|
* Removes all key-value entries from the map.
|
|
168
168
|
*/
|
|
169
|
-
clear?: () => void;
|
|
169
|
+
clear?: (() => void) | undefined;
|
|
170
170
|
}
|
|
171
171
|
interface MapCacheConstructor {
|
|
172
172
|
new (): MapCache;
|
lodash/common/function.d.ts
CHANGED
|
@@ -358,15 +358,15 @@ declare module "../index" {
|
|
|
358
358
|
/**
|
|
359
359
|
* @see _.leading
|
|
360
360
|
*/
|
|
361
|
-
leading?: boolean;
|
|
361
|
+
leading?: boolean | undefined;
|
|
362
362
|
/**
|
|
363
363
|
* @see _.maxWait
|
|
364
364
|
*/
|
|
365
|
-
maxWait?: number;
|
|
365
|
+
maxWait?: number | undefined;
|
|
366
366
|
/**
|
|
367
367
|
* @see _.trailing
|
|
368
368
|
*/
|
|
369
|
-
trailing?: boolean;
|
|
369
|
+
trailing?: boolean | undefined;
|
|
370
370
|
}
|
|
371
371
|
interface DebouncedFunc<T extends (...args: any[]) => any> {
|
|
372
372
|
/**
|
|
@@ -1333,11 +1333,11 @@ declare module "../index" {
|
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @see _.leading
|
|
1335
1335
|
*/
|
|
1336
|
-
leading?: boolean;
|
|
1336
|
+
leading?: boolean | undefined;
|
|
1337
1337
|
/**
|
|
1338
1338
|
* @see _.trailing
|
|
1339
1339
|
*/
|
|
1340
|
-
trailing?: boolean;
|
|
1340
|
+
trailing?: boolean | undefined;
|
|
1341
1341
|
}
|
|
1342
1342
|
interface LoDashStatic {
|
|
1343
1343
|
/**
|
lodash/common/string.d.ts
CHANGED
|
@@ -475,7 +475,7 @@ declare module "../index" {
|
|
|
475
475
|
/**
|
|
476
476
|
* @see _.sourceURL
|
|
477
477
|
*/
|
|
478
|
-
sourceURL?: string;
|
|
478
|
+
sourceURL?: string | undefined;
|
|
479
479
|
}
|
|
480
480
|
interface TemplateExecutor {
|
|
481
481
|
(data?: object): string;
|
|
@@ -655,15 +655,15 @@ declare module "../index" {
|
|
|
655
655
|
/**
|
|
656
656
|
* @see _.length
|
|
657
657
|
*/
|
|
658
|
-
length?: number;
|
|
658
|
+
length?: number | undefined;
|
|
659
659
|
/**
|
|
660
660
|
* @see _.omission
|
|
661
661
|
*/
|
|
662
|
-
omission?: string;
|
|
662
|
+
omission?: string | undefined;
|
|
663
663
|
/**
|
|
664
664
|
* @see _.separator
|
|
665
665
|
*/
|
|
666
|
-
separator?: string | RegExp;
|
|
666
|
+
separator?: string | RegExp | undefined;
|
|
667
667
|
}
|
|
668
668
|
interface LoDashStatic {
|
|
669
669
|
/**
|
lodash/common/util.d.ts
CHANGED
lodash/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.171",
|
|
4
4
|
"description": "TypeScript definitions for Lo-Dash",
|
|
5
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"contributors": [
|
|
7
8
|
{
|
|
@@ -59,6 +60,6 @@
|
|
|
59
60
|
},
|
|
60
61
|
"scripts": {},
|
|
61
62
|
"dependencies": {},
|
|
62
|
-
"typesPublisherContentHash": "
|
|
63
|
-
"typeScriptVersion": "3.
|
|
63
|
+
"typesPublisherContentHash": "47ee457337f16c752395542084e5ec22662487b7b62ec8850fa3bd079fb06e81",
|
|
64
|
+
"typeScriptVersion": "3.6"
|
|
64
65
|
}
|