8 lines
478 B
TypeScript
8 lines
478 B
TypeScript
import { AggregateOptions, AggregateRawReply } from './AGGREGATE';
|
|
import { ProfileOptions, ProfileRawReply, ProfileReply } from '.';
|
|
export declare const IS_READ_ONLY = true;
|
|
export declare function transformArguments(index: string, query: string, options?: ProfileOptions & AggregateOptions): Array<string>;
|
|
type ProfileAggeregateRawReply = ProfileRawReply<AggregateRawReply>;
|
|
export declare function transformReply(reply: ProfileAggeregateRawReply): ProfileReply;
|
|
export {};
|