dld_backend/node_modules/@redis/client/dist/lib/commands/BZMPOP.d.ts
2025-10-30 12:13:02 +05:30

6 lines
406 B
TypeScript

import { RedisCommandArgument, RedisCommandArguments } from '.';
import { SortedSetSide, ZMPopOptions } from './generic-transformers';
export declare const FIRST_KEY_INDEX = 3;
export declare function transformArguments(timeout: number, keys: RedisCommandArgument | Array<RedisCommandArgument>, side: SortedSetSide, options?: ZMPopOptions): RedisCommandArguments;
export { transformReply } from './ZMPOP';