(...args: Parameters<typeof parseEvalArguments>)
| 26 | export default { |
| 27 | IS_READ_ONLY: false, |
| 28 | parseCommand(...args: Parameters<typeof parseEvalArguments>) { |
| 29 | args[0].push('EVAL'); |
| 30 | parseEvalArguments(...args); |
| 31 | }, |
| 32 | transformReply: undefined as unknown as () => ReplyUnion |
| 33 | } as const satisfies Command; |
nothing calls this directly
no test coverage detected