(parser: CommandParser, ...args: LMPopArguments)
| 25 | export default { |
| 26 | IS_READ_ONLY: false, |
| 27 | parseCommand(parser: CommandParser, ...args: LMPopArguments) { |
| 28 | parser.push('LMPOP'); |
| 29 | parseLMPopArguments(parser, ...args); |
| 30 | }, |
| 31 | transformReply: undefined as unknown as () => NullReply | TuplesReply<[ |
| 32 | key: BlobStringReply, |
| 33 | elements: Array<BlobStringReply> |
nothing calls this directly
no test coverage detected