Replies: 2 comments 4 replies
-
I think most of the steps are already taken, which is using the const |
Beta Was this translation helpful? Give feedback.
-
So, affected files are in They import I suppose, we could create an interface or a class "Notification" in export interface Notification<T> {
hasValue: boolean;
kind: 'N' | 'E' | 'C';
value?: T;
error?: any;
} and just edit the imports in 3 files. If you think that it's ok - I'm ready to create a PR. If you have a better idea or I'm missing some important details - please let me know. |
Beta Was this translation helpful? Give feedback.
-
I would like to know contributors' opinions about how difficult it would be to replace usage of rxjs/Notification in @ngrx/store library (Notification was removed in RxJS 8).
Beta Was this translation helpful? Give feedback.
All reactions