webclient-fetch.d.ts 281 B

1234567
  1. import { IWebClient } from "./webclient";
  2. import { IWebClientOptions } from "./webclient-options";
  3. export declare class WebClientFetch implements IWebClient {
  4. request(options: IWebClientOptions): Promise<string>;
  5. requestJSON(options: IWebClientOptions): Promise<object>;
  6. }