UNPKG

@ng-app-framework/api

Version:

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

6 lines (5 loc) 236 B
import { Observable } from "rxjs/Rx"; import { HttpRequest, HttpResponse } from "@angular/common/http"; export declare abstract class Requestable { abstract request(request: HttpRequest<any>): Observable<HttpResponse<any> | any>; }