webclient-node.d.ts 280 B

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