MGET_WITHLABELS.d.ts 619 B

12345678910111213
  1. import { SelectedLabels, Labels, Filter } from '.';
  2. import { MGetOptions, MGetRawReply, MGetReply } from './MGET';
  3. import { RedisCommandArguments } from '@redis/client/dist/lib/commands';
  4. export declare const IS_READ_ONLY = true;
  5. interface MGetWithLabelsOptions extends MGetOptions {
  6. SELECTED_LABELS?: SelectedLabels;
  7. }
  8. export declare function transformArguments(filter: Filter, options?: MGetWithLabelsOptions): RedisCommandArguments;
  9. export interface MGetWithLabelsReply extends MGetReply {
  10. labels: Labels;
  11. }
  12. export declare function transformReply(reply: MGetRawReply): Array<MGetWithLabelsReply>;
  13. export {};