navidev-adt-api
Version:
API de conexión al Abap Developer Tools
14 lines • 520 B
TypeScript
import HttpClientInterface from "./httpClientInterface";
import { HttpClientOptions, HttpClientResponse } from "./httpClient";
export default class FetchHttpClient implements HttpClientInterface {
private axios;
constructor(baseURL: string);
request(options: HttpClientOptions): Promise<HttpClientResponse>;
/**
* Convierte las opciones HTTP propias a la configuración de Axios
* @param options
* @returns
*/
private toAxiosConfig;
}
//# sourceMappingURL=fetchHTTPClient.d.ts.map