SUGADD.d.ts 256 B

1234567
  1. interface SugAddOptions {
  2. INCR?: true;
  3. PAYLOAD?: string;
  4. }
  5. export declare function transformArguments(key: string, string: string, score: number, options?: SugAddOptions): Array<string>;
  6. export declare function transformReply(): number;
  7. export {};