(parser: CommandParser, key: RedisArgument, member: RedisVariadicArgument)
| 6 | CACHEABLE: true, |
| 7 | IS_READ_ONLY: true, |
| 8 | parseCommand(parser: CommandParser, key: RedisArgument, member: RedisVariadicArgument) { |
| 9 | parser.push('GEOPOS'); |
| 10 | parser.pushKey(key); |
| 11 | parser.pushVariadic(member); |
| 12 | }, |
| 13 | transformReply(reply: UnwrapReply<ArrayReply<TuplesReply<[BlobStringReply, BlobStringReply]> | NullReply>>) { |
| 14 | return reply.map(item => { |
| 15 | const unwrapped = item as unknown as UnwrapReply<typeof item>; |
nothing calls this directly
no test coverage detected