index.d.ts 345 B

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