(parser: CommandParser, destination: RedisArgument, inputKeys: RedisVariadicArgument)
| 5 | export default { |
| 6 | IS_READ_ONLY: true, |
| 7 | parseCommand(parser: CommandParser, destination: RedisArgument, inputKeys: RedisVariadicArgument) { |
| 8 | parser.push('ZDIFFSTORE'); |
| 9 | parser.pushKey(destination); |
| 10 | parser.pushKeysLength(inputKeys); |
| 11 | }, |
| 12 | transformReply: undefined as unknown as () => NumberReply |
| 13 | } as const satisfies Command; |
nothing calls this directly
no test coverage detected