import HttpRequest from "./HttpRequest"; import { Exception } from "../../../Exception"; export default class HttpClient { static newCall(httpRequest: HttpRequest): HttpCallInterface; } export interface HttpResponse { result: string; error: Exception; } export interface HttpCallInterface { execute(): Promise; sendAsync(): Promise; }