(parser: CommandParser, key: RedisArgument, newKey: RedisArgument)
| 4 | export default { |
| 5 | IS_READ_ONLY: true, |
| 6 | parseCommand(parser: CommandParser, key: RedisArgument, newKey: RedisArgument) { |
| 7 | parser.push('RENAME'); |
| 8 | parser.pushKeys([key, newKey]); |
| 9 | }, |
| 10 | transformReply: undefined as unknown as () => SimpleStringReply |
| 11 | } as const satisfies Command; |