import { Command } from '../RESP/types'; import { transformSortedSetReply } from './generic-transformers'; import ZRANGEBYSCORE from './ZRANGEBYSCORE'; export default { CACHEABLE: ZRANGEBYSCORE.CACHEABLE, IS_READ_ONLY: ZRANGEBYSCORE.IS_READ_ONLY, /** * Returns all the elements in the sorted set with a score between min and max, with their scores. * @param args - Same parameters as the ZRANGEBYSCORE command. */ parseCommand(...args: Parameters) { const parser = args[0]; ZRANGEBYSCORE.parseCommand(...args); parser.push('WITHSCORES'); }, transformReply: transformSortedSetReply } as const satisfies Command;