UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

14 lines (13 loc) 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 {};