UNPKG

@ng-app-framework/api

Version:

![Travis CI](https://travis-ci.org/ng-app-framework/api.svg?branch=master)

8 lines (7 loc) 331 B
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<HttpResponse<any> | any>; }