@types/lodash 4.14.169 → 4.14.170
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/function.d.ts +4 -4
- lodash/package.json +2 -2
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: Fri, 21 May 2021 10:31:46 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `_`
|
|
14
14
|
|
lodash/common/function.d.ts
CHANGED
|
@@ -375,21 +375,21 @@ declare module "../index" {
|
|
|
375
375
|
* If the debounced function can be run immediately, this calls it and returns its return
|
|
376
376
|
* value.
|
|
377
377
|
*
|
|
378
|
-
* Otherwise, it returns the return value of the last
|
|
378
|
+
* Otherwise, it returns the return value of the last invocation, or undefined if the debounced
|
|
379
379
|
* function was not invoked yet.
|
|
380
380
|
*/
|
|
381
381
|
(...args: Parameters<T>): ReturnType<T> | undefined;
|
|
382
382
|
|
|
383
383
|
/**
|
|
384
|
-
* Throw away any pending
|
|
384
|
+
* Throw away any pending invocation of the debounced function.
|
|
385
385
|
*/
|
|
386
386
|
cancel(): void;
|
|
387
387
|
|
|
388
388
|
/**
|
|
389
|
-
* If there is a pending
|
|
389
|
+
* If there is a pending invocation of the debounced function, invoke it immediately and return
|
|
390
390
|
* its return value.
|
|
391
391
|
*
|
|
392
|
-
* Otherwise, return the value from the last
|
|
392
|
+
* Otherwise, return the value from the last invocation, or undefined if the debounced function
|
|
393
393
|
* was never invoked.
|
|
394
394
|
*/
|
|
395
395
|
flush(): ReturnType<T> | undefined;
|
lodash/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/lodash",
|
|
3
|
-
"version": "4.14.
|
|
3
|
+
"version": "4.14.170",
|
|
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": "
|
|
62
|
+
"typesPublisherContentHash": "a1ab5370dc7d2482887ea9005d6da6d52ec549e607cb6eea7e84a4b6b69751ce",
|
|
63
63
|
"typeScriptVersion": "3.5"
|
|
64
64
|
}
|