@ng-app-framework/api
Version:

10 lines (9 loc) • 453 B
TypeScript
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>;
}