(args: CommandArguments, transformReply?: TransformReply)
| 34 | readonly scriptsInUse = new Set<string>(); |
| 35 | |
| 36 | addCommand(args: CommandArguments, transformReply?: TransformReply) { |
| 37 | this.queue.push({ |
| 38 | args, |
| 39 | transformReply |
| 40 | }); |
| 41 | } |
| 42 | |
| 43 | addScript(script: RedisScript, args: CommandArguments, transformReply?: TransformReply) { |
| 44 | const redisArgs: CommandArguments = []; |
no test coverage detected