SUGGET.d.ts 290 B

1234567
  1. export declare const IS_READ_ONLY = true;
  2. export interface SugGetOptions {
  3. FUZZY?: true;
  4. MAX?: number;
  5. }
  6. export declare function transformArguments(key: string, prefix: string, options?: SugGetOptions): Array<string>;
  7. export declare function transformReply(): null | Array<string>;