UNPKG

mframejs

Version:
9 lines (8 loc) 294 B
import { IFetchConfig } from '../interface/exported'; export declare class FetchClient { private config; constructor(config?: IFetchConfig); setConfig(config: IFetchConfig): void; getConfig(): IFetchConfig; fetch(url: string, options: IFetchConfig): Promise<any>; }