(parser: CommandParser, key: RedisVariadicArgument)
| 5 | export default { |
| 6 | IS_READ_ONLY: false, |
| 7 | parseCommand(parser: CommandParser, key: RedisVariadicArgument) { |
| 8 | parser.push('TOUCH'); |
| 9 | parser.pushKeys(key); |
| 10 | }, |
| 11 | transformReply: undefined as unknown as () => NumberReply |
| 12 | } as const satisfies Command; |