PROFILE_SEARCH.d.ts 563 B

12345678
  1. import { SearchOptions, SearchRawReply } from './SEARCH';
  2. import { ProfileOptions, ProfileRawReply, ProfileReply } from '.';
  3. import { RedisCommandArguments } from '@redis/client/dist/lib/commands';
  4. export declare const IS_READ_ONLY = true;
  5. export declare function transformArguments(index: string, query: string, options?: ProfileOptions & SearchOptions): RedisCommandArguments;
  6. type ProfileSearchRawReply = ProfileRawReply<SearchRawReply>;
  7. export declare function transformReply(reply: ProfileSearchRawReply, withoutDocuments: boolean): ProfileReply;
  8. export {};