1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/ZPOPMAX_COUNT.ts
2021-12-15 17:08:50 -05:00

13 lines
396 B
TypeScript

import { transformArguments as transformZPopMaxArguments } from './ZPOPMAX';
export { FIRST_KEY_INDEX } from './ZPOPMAX';
export function transformArguments(key: string, count: number): Array<string> {
return [
...transformZPopMaxArguments(key),
count.toString()
];
}
export { transformReplySortedStringsSetWithScores as transformReply } from './generic-transformers';