There was an error while loading. Please reload this page.
1 parent 5725a38 commit eda3440Copy full SHA for eda3440
lib/http.service.ts
@@ -12,7 +12,7 @@ import { AXIOS_INSTANCE_TOKEN } from './http.constants';
12
export class HttpService {
13
constructor(
14
@Inject(AXIOS_INSTANCE_TOKEN)
15
- private readonly instance: AxiosInstance = Axios,
+ protected readonly instance: AxiosInstance = Axios,
16
) {}
17
18
request<T = any>(config: AxiosRequestConfig): Observable<AxiosResponse<T>> {
@@ -68,7 +68,7 @@ export class HttpService {
68
return this.instance;
69
}
70
71
- private makeObservable<T>(
+ protected makeObservable<T>(
72
axios: (...args: any[]) => AxiosPromise<T>,
73
...args: any[]
74
) {
0 commit comments