import { IWebClient } from "./webclient"; import { IWebClientOptions } from "./webclient-options"; export default class WebClientFetch implements IWebClient { request(options: IWebClientOptions): Promise; requestJSON(options: IWebClientOptions): Promise; }