UNPKG

@wizdom-intranet/services

Version:

A list of core service to ease Wizdom development

7 lines (6 loc) 245 B
import { IHttpClient, IHttpClientResponse } from "../http.interfaces"; export class HttpClientNullStub implements IHttpClient { get(url: string): Promise<IHttpClientResponse> { throw "get called un HttpClientNullStub"; } }