import { WolkError } from './WolkError'; import { RequestConfig } from './../+shared'; export interface WolkHttpClient { request(method: string, url: string, requestConfig: RequestConfig): Promise; handleError(error: any): WolkError; setAuthHeader(value: string): void; removeAuthHeader(): void; } //# sourceMappingURL=WolkHttpClient.d.ts.map