I am trying to find the .select method of ngrx but I cannot really find details on it on internet. What I need is to find out about the overloads of this .select() method. Like, the simplest form is
.select(state => state.someSlice)
But I saw also
.select(p1, p2, (p1, p2) => someFunction(p1, p2));
and similar. Is p1, p2 necessarily an observables? I need some documentation on this. This is the ngrx version that is in my package.json:
"@ngrx/component-store": "^10.0.0",