123
This commit is contained in:
14
node_modules/@redis/client/dist/lib/commands/XAUTOCLAIM.d.ts
generated
vendored
Normal file
14
node_modules/@redis/client/dist/lib/commands/XAUTOCLAIM.d.ts
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
import { RedisCommandArgument, RedisCommandArguments } from '.';
|
||||
import { StreamMessagesNullReply } from './generic-transformers';
|
||||
export declare const FIRST_KEY_INDEX = 1;
|
||||
export interface XAutoClaimOptions {
|
||||
COUNT?: number;
|
||||
}
|
||||
export declare function transformArguments(key: RedisCommandArgument, group: RedisCommandArgument, consumer: RedisCommandArgument, minIdleTime: number, start: string, options?: XAutoClaimOptions): RedisCommandArguments;
|
||||
type XAutoClaimRawReply = [RedisCommandArgument, Array<any>];
|
||||
interface XAutoClaimReply {
|
||||
nextId: RedisCommandArgument;
|
||||
messages: StreamMessagesNullReply;
|
||||
}
|
||||
export declare function transformReply(reply: XAutoClaimRawReply): XAutoClaimReply;
|
||||
export {};
|
||||
Reference in New Issue
Block a user