UNPKG

navidev-abap-gw-api

Version:

API para la extracción de datos de servicios SAP GW

12 lines 430 B
import { HttpClientOptions, HttpClientResponse } from "../httpClient/httpClient"; export default interface HttpClientInterface { /** * HTTP request * @param options url, headers,... * @returns the result of the HTTP call * * expected to throw only AdtException errors */ request: (options: HttpClientOptions) => Promise<HttpClientResponse>; } //# sourceMappingURL=httpClientInterface.d.ts.map