123
This commit is contained in:
13
node_modules/@redis/time-series/dist/commands/MGET_WITHLABELS.d.ts
generated
vendored
Normal file
13
node_modules/@redis/time-series/dist/commands/MGET_WITHLABELS.d.ts
generated
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
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 {};
|
||||
Reference in New Issue
Block a user