import { Observable } from "rxjs/Rx"; import { EndpointConfig } from "../Impl/EndpointConfig"; import { HttpResponse } from "@angular/common/http"; export declare abstract class Callable { config: EndpointConfig; abstract call(absoluteUrl: string, method: string, requestData?: any): Observable | any>; }