RXJS 7 - TS2693: «AjaxDirection» относится только к типу, но здесь используется как значение
Я обновил свои проекты angular 11
RxJS 7
и в веб-шторме он предложил мне изменить некоторые
Subject
импорт, как только я обновлю этот импорт, я получаю ошибку ниже
ERROR: node_modules/rxjs/dist/types/internal/ajax/types.d.ts:9:40 - error TS1110: Type expected.
9 export declare type AjaxResponseType = `${AjaxDirection}_${ProgressEventType}`;
~~~
node_modules/rxjs/dist/types/internal/ajax/types.d.ts:9:43 - error TS2693: 'AjaxDirection' only refers to a type, but is being used as a value here.
9 export declare type AjaxResponseType = `${AjaxDirection}_${ProgressEventType}`;
~~~~~~~~~~~~~
node_modules/rxjs/dist/types/internal/ajax/types.d.ts:9:60 - error TS2693: 'ProgressEventType' only refers to a type, but is being used as a value here.
9 export declare type AjaxResponseType = `${AjaxDirection}_${ProgressEventType}`;
~~~~~~~~~~~~~~~~~
An unhandled exception occurred: node_modules/rxjs/dist/types/internal/ajax/types.d.ts:9:40 - error TS1110: Type expected.
кто-нибудь решил эту проблему или пытался перейти на
RxJs7
?