Anton Lashan

Results 1 comments of Anton Lashan

```ts import { HttpClient, HttpClientModule, HTTP_INTERCEPTORS, HttpBackend } from '@angular/common/http'; @Injectable({providedIn: 'root'}) export class HttpClientTrans extends HttpClient { constructor(handler: HttpBackend) { super(handler); } } export function HttpLoaderFactory(httpClient: HttpClientTrans) { return...