(...args: Parameters<typeof parseEvalArguments>)
| 4 | export default { |
| 5 | IS_READ_ONLY: false, |
| 6 | parseCommand(...args: Parameters<typeof parseEvalArguments>) { |
| 7 | args[0].push('FCALL'); |
| 8 | parseEvalArguments(...args); |
| 9 | }, |
| 10 | transformReply: EVAL.transformReply |
| 11 | } as const satisfies Command; |
nothing calls this directly
no test coverage detected