http.d.ts 376 B

1234567891011
  1. /// <reference types="node" />
  2. export class HttpClient extends BaseClient {
  3. parsedUrl: urlMod.UrlWithStringQuery;
  4. httpApi: typeof http | typeof https;
  5. constructRequest(headers: any, signal: any): Promise<any>;
  6. }
  7. import { BaseClient } from "./base.js";
  8. import urlMod from "url";
  9. import http from "http";
  10. import https from "https";
  11. //# sourceMappingURL=http.d.ts.map