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.
 
 
 
 

13 lines
619 B

import { SelectedLabels, Labels, Filter } from '.';
import { MGetOptions, MGetRawReply, MGetReply } from './MGET';
import { RedisCommandArguments } from '@redis/client/dist/lib/commands';
export declare const IS_READ_ONLY = true;
interface MGetWithLabelsOptions extends MGetOptions {
SELECTED_LABELS?: SelectedLabels;
}
export declare function transformArguments(filter: Filter, options?: MGetWithLabelsOptions): RedisCommandArguments;
export interface MGetWithLabelsReply extends MGetReply {
labels: Labels;
}
export declare function transformReply(reply: MGetRawReply): Array<MGetWithLabelsReply>;
export {};