SR
Size: a a a
SR
IF
YK
T
B
S
T
T
S
S
T
T
S
G
G
EV
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(request).pipe(
tap(
t => {
if (t instanceof HttpResponse) {
console.log(t.body.errors!);
}
}
),
);
}
S
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return next.handle(request).pipe(
tap(
t => {
if (t instanceof HttpResponse) {
console.log(t.body.errors!);
}
}
),
);
}
EV
DU