index.d.ts 307 B

1234567891011
  1. declare const _exports: {
  2. convert: (request: any, options: {
  3. indentType: string;
  4. indentCount: number;
  5. requestTimeout: number;
  6. requestBodyTrim: boolean;
  7. followRedirect: boolean;
  8. }, callback: Function) => any;
  9. getOptions: () => any[];
  10. };
  11. export = _exports;