(parser: CommandParser, timeout: number, ...args: LMPopArguments)
| 5 | export default { |
| 6 | IS_READ_ONLY: false, |
| 7 | parseCommand(parser: CommandParser, timeout: number, ...args: LMPopArguments) { |
| 8 | parser.push('BLMPOP', timeout.toString()); |
| 9 | parseLMPopArguments(parser, ...args); |
| 10 | }, |
| 11 | transformReply: LMPOP.transformReply |
| 12 | } as const satisfies Command; |
nothing calls this directly
no test coverage detected