-first commit
This commit is contained in:
25
node_modules/@redis/client/dist/lib/commands/LMPOP.d.ts
generated
vendored
Normal file
25
node_modules/@redis/client/dist/lib/commands/LMPOP.d.ts
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import { CommandParser } from '../client/parser';
|
||||
import { NullReply, TuplesReply, BlobStringReply } from '../RESP/types';
|
||||
import { ListSide, RedisVariadicArgument, Tail } from './generic-transformers';
|
||||
export interface LMPopOptions {
|
||||
COUNT?: number;
|
||||
}
|
||||
export declare function parseLMPopArguments(parser: CommandParser, keys: RedisVariadicArgument, side: ListSide, options?: LMPopOptions): void;
|
||||
export type LMPopArguments = Tail<Parameters<typeof parseLMPopArguments>>;
|
||||
declare const _default: {
|
||||
readonly IS_READ_ONLY: false;
|
||||
/**
|
||||
* Constructs the LMPOP command
|
||||
*
|
||||
* @param parser - The command parser
|
||||
* @param args - Arguments including keys, side (LEFT or RIGHT), and options
|
||||
* @see https://redis.io/commands/lmpop/
|
||||
*/
|
||||
readonly parseCommand: (this: void, parser: CommandParser, keys: RedisVariadicArgument, side: ListSide, options?: LMPopOptions | undefined) => void;
|
||||
readonly transformReply: () => NullReply | TuplesReply<[
|
||||
key: BlobStringReply,
|
||||
elements: Array<BlobStringReply>
|
||||
]>;
|
||||
};
|
||||
export default _default;
|
||||
//# sourceMappingURL=LMPOP.d.ts.map
|
||||
Reference in New Issue
Block a user