UNPKG

@ng-app-framework/api

Version:

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

9 lines (8 loc) 363 B
import { Requestable } from "./Interface/Requestable"; import { Observable } from "rxjs/Rx"; import { HttpClient, HttpRequest, HttpResponse } from "@angular/common/http"; export declare class HttpProxy implements Requestable { http: HttpClient; constructor(http: HttpClient); request(request: HttpRequest<any>): Observable<HttpResponse<any> | any>; }