@types/redlock
Advanced tools
Comparing version 3.0.5 to 3.0.6
@@ -41,5 +41,6 @@ // Type definitions for redlock 3.0 | ||
type EvalArg = string | number; | ||
interface CompatibleRedisClient { | ||
eval(args: any[], callback?: (err: Error | null, res: any) => void): any; | ||
eval(...args: any[]): any; | ||
eval(args: EvalArg[], callback?: (err: Error | null, res: any) => void): any; | ||
} | ||
@@ -46,0 +47,0 @@ } |
{ | ||
"name": "@types/redlock", | ||
"version": "3.0.5", | ||
"version": "3.0.6", | ||
"description": "TypeScript definitions for redlock", | ||
@@ -19,3 +19,3 @@ "license": "MIT", | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
@@ -30,4 +30,4 @@ "type": "git", | ||
}, | ||
"typesPublisherContentHash": "1c91f425f01c7ce08b1556b6e6e9937e5adaf125f3c87e680e66f3dbc4e6e352", | ||
"typesPublisherContentHash": "80598cc0640435b918c7ea48e844525eb596de95a9b15ae70ed35bec1c1974b7", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -8,10 +8,10 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redlock/v3 | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redlock/v3. | ||
Additional Details | ||
* Last updated: Wed, 02 Oct 2019 21:10:25 GMT | ||
* Dependencies: @types/bluebird | ||
### Additional Details | ||
* Last updated: Thu, 05 Dec 2019 00:09:26 GMT | ||
* Dependencies: [@types/bluebird](https://npmjs.com/package/@types/bluebird) | ||
* Global values: none | ||
# Credits | ||
These definitions were written by Ilya Mochalov <https://github.com/chrootsu>, and BendingBender <https://github.com/BendingBender>. | ||
These definitions were written by Ilya Mochalov (https://github.com/chrootsu), and BendingBender (https://github.com/BendingBender). |
5420