@angular/store also gives you couple of methods which helps in some ways.
if you wish to get current state of you application any time, you can use following code
constructor(private store: Store) { const state = this.store.getSnapShot<AppState>() }
Last updated 6 years ago