(parser: CommandParser, key: RedisArgument, id: RedisVariadicArgument)
| 8 | export default { |
| 9 | IS_READ_ONLY: false, |
| 10 | parseCommand(parser: CommandParser, key: RedisArgument, id: RedisVariadicArgument) { |
| 11 | parser.push('XDEL'); |
| 12 | parser.pushKey(key); |
| 13 | parser.pushVariadic(id); |
| 14 | }, |
| 15 | transformReply: undefined as unknown as () => NumberReply |
| 16 | } as const satisfies Command; |
nothing calls this directly
no test coverage detected