Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/BLMPOP.d.ts
2025-11-11 12:36:06 +07:00

14 lines
923 B
TypeScript

import { CommandParser } from '../client/parser';
declare const _default: {
readonly IS_READ_ONLY: false;
/**
* Pops elements from multiple lists; blocks until elements are available
* @param parser - The Redis command parser
* @param timeout - Timeout in seconds, 0 to block indefinitely
* @param args - Additional arguments for LMPOP command
*/
readonly parseCommand: (this: void, parser: CommandParser, timeout: number, keys: import("./generic-transformers").RedisVariadicArgument, side: import("./generic-transformers").ListSide, options?: import("./LMPOP").LMPopOptions | undefined) => void;
readonly transformReply: () => import("../RESP/types").NullReply | import("../RESP/types").TuplesReply<[key: import("../RESP/types").BlobStringReply<string>, elements: import("../RESP/types").BlobStringReply<string>[]]>;
};
export default _default;
//# sourceMappingURL=BLMPOP.d.ts.map