When working with NgRx and typescript, I often come across this syntax within class constructors:
import { Store, select } from '@ngrx/store'
class MyClass {
constructor(private store: Store<AppState>) {
this.count$ = store.pipe(select('users'));
}
}
Can someone explain the purpose of the angle bracket syntax in Store<AppState>
?