(parser: CommandParser, keys: RedisVariadicArgument)
| 5 | export default { |
| 6 | IS_READ_ONLY: true, |
| 7 | parseCommand(parser: CommandParser, keys: RedisVariadicArgument) { |
| 8 | parser.push('ZDIFF'); |
| 9 | parser.pushKeysLength(keys); |
| 10 | }, |
| 11 | transformReply: undefined as unknown as () => ArrayReply<BlobStringReply> |
| 12 | } as const satisfies Command; |
nothing calls this directly
no test coverage detected