PROFILE_AGGREGATE.d.ts 478 B

1234567
  1. import { AggregateOptions, AggregateRawReply } from './AGGREGATE';
  2. import { ProfileOptions, ProfileRawReply, ProfileReply } from '.';
  3. export declare const IS_READ_ONLY = true;
  4. export declare function transformArguments(index: string, query: string, options?: ProfileOptions & AggregateOptions): Array<string>;
  5. type ProfileAggeregateRawReply = ProfileRawReply<AggregateRawReply>;
  6. export declare function transformReply(reply: ProfileAggeregateRawReply): ProfileReply;
  7. export {};