F
Size: a a a
F
F
F
D
F
НК
VL
A
import { Injectable } from '@angular/core';
import { HttpClient, HttpBackend } from '@angular/common/http';
@Injectable({
providedIn: 'root',
})
export class HttpBackendClientService extends HttpClient {
constructor(handler: HttpBackend) {
super(handler);
}
}
constructor(private http: HttpBackendClientService) {}
http: HttpClient;
constructor(handler: HttpBackend) {
this.http = new HttpClient(handler)
}
VL
VS
import { Injectable } from '@angular/core';
import { HttpClient, HttpBackend } from '@angular/common/http';
@Injectable({
providedIn: 'root',
})
export class HttpBackendClientService extends HttpClient {
constructor(handler: HttpBackend) {
super(handler);
}
}
constructor(private http: HttpBackendClientService) {}
http: HttpClient;
constructor(handler: HttpBackend) {
this.http = new HttpClient(handler)
}
J💖
S
OS
S
SK
RR
b
В
S