You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
681 B
14 lines
681 B
import { AggregateOptions, AggregateRawReply, AggregateReply } from './AGGREGATE';
|
|
export { FIRST_KEY_INDEX, IS_READ_ONLY } from './AGGREGATE';
|
|
interface AggregateWithCursorOptions extends AggregateOptions {
|
|
COUNT?: number;
|
|
}
|
|
export declare function transformArguments(index: string, query: string, options?: AggregateWithCursorOptions): import("@redis/client/dist/lib/commands").RedisCommandArguments;
|
|
type AggregateWithCursorRawReply = [
|
|
result: AggregateRawReply,
|
|
cursor: number
|
|
];
|
|
interface AggregateWithCursorReply extends AggregateReply {
|
|
cursor: number;
|
|
}
|
|
export declare function transformReply(reply: AggregateWithCursorRawReply): AggregateWithCursorReply;
|
|
|