import { HttpObserve } from '@angular/common/http/src/client';
import { HttpParams, HttpHeaders } from '@angular/common/http';
type responseType = 'arraybuffer' | 'blob' | 'json' | 'text';
export interface RequestOptions {
body?: any;
headers?: HttpHeaders;
params?: HttpParams;
observe?: HttpObserve;
reportProgress?: boolean;
responseType?: responseType;
withCredentials?: boolean;
}
Приведенный выше код выдает указанную ниже ошибку после обновления до angular 8, любая помощь?
error TS2307: Cannot find module '@angular/common/http/src/client'.