UNPKG

navidev-adt-api

Version:

API de conexión al Abap Developer Tools

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