UNPKG

@agility/content-fetch

Version:
13 lines (12 loc) 280 B
import { Config } from "./Config"; export interface RequestParams { url: string; method: string; baseURL: string | null; headers: any; params: any; } export interface ApiClientInstance { config: Config; makeRequest(req: RequestParams): Promise<any>; }