(
parser: CommandParser,
keys: RedisVariadicArgument,
side: SortedSetSide,
options?: ZMPopOptions
)
| 34 | export default { |
| 35 | IS_READ_ONLY: false, |
| 36 | parseCommand( |
| 37 | parser: CommandParser, |
| 38 | keys: RedisVariadicArgument, |
| 39 | side: SortedSetSide, |
| 40 | options?: ZMPopOptions |
| 41 | ) { |
| 42 | parser.push('ZMPOP'); |
| 43 | parseZMPopArguments(parser, keys, side, options) |
| 44 | }, |
| 45 | transformReply: { |
| 46 | 2(reply: UnwrapReply<Resp2Reply<ZMPopRawReply>>, preserve?: unknown, typeMapping?: TypeMapping) { |
| 47 | return reply === null ? null : { |
nothing calls this directly
no test coverage detected