@types/redis
Advanced tools
Comparing version 2.8.21 to 2.8.22
@@ -1001,2 +1001,10 @@ // Type definitions for redis 2.8 | ||
/** | ||
* Deletes a key in a non-blocking manner. | ||
* Very similar to DEL, but actual memory reclamation | ||
* happens in a different thread, making this non-blocking. | ||
*/ | ||
unlink: OverloadedCommand<string, number, R>; | ||
UNLINK: OverloadedCommand<string, number, R>; | ||
/** | ||
* Forget about all watched keys. | ||
@@ -1003,0 +1011,0 @@ */ |
{ | ||
"name": "@types/redis", | ||
"version": "2.8.21", | ||
"version": "2.8.22", | ||
"description": "TypeScript definitions for redis", | ||
@@ -96,4 +96,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "186d3827fedc7c8132ba42b033a39cec92f5c92681f195ef5d2e38797719544f", | ||
"typesPublisherContentHash": "ef80857526779e7bbc040998721f1e58e55798697ba9e707fb31e1550c6afb02", | ||
"typeScriptVersion": "3.0" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 15 May 2020 11:32:30 GMT | ||
* Last updated: Fri, 29 May 2020 22:39:38 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node), [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ * Global values: none |
@@ -982,2 +982,10 @@ /// <reference types="node" /> | ||
/** | ||
* Deletes a key in a non-blocking manner. | ||
* Very similar to DEL, but actual memory reclamation | ||
* happens in a different thread, making this non-blocking. | ||
*/ | ||
unlink: OverloadedCommand<string, number, R>; | ||
UNLINK: OverloadedCommand<string, number, R>; | ||
/** | ||
* Forget about all watched keys. | ||
@@ -984,0 +992,0 @@ */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
100623
2147