UNPKG

@ng-app-framework/api

Version:

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

10 lines (9 loc) 453 B
import { Observable } from "rxjs/Rx"; import { HttpResponse } from "@angular/common/http"; import { EndpointConfig } from "../../src/lib/Service/Impl/EndpointConfig"; import { Callable } from "../../src/lib/Service/Interface/Callable"; export declare class EndpointCallerMock implements Callable { config: EndpointConfig; mockResponse: {}; call(absoluteUrl: string, method: string, requestData?: any): Observable<HttpResponse<any> | any>; }