I just want to find what this type <V> for EntityState<V> is.
I just put the above in as code so that the V part shows up...( and I have no freaking idea how to search for something that is enclosed in chevrons or wtf those things are called)
I've searched for everything I can think of. The ngrx docs use it in the documentation for https://v7.ngrx.io/guide/entity/interfaces and I found this tutorial that mentions it - https://medium.com/ngrx/introducing-ngrx-entity-598176456e15
... but I just can't figure out what is type <V>.
Here is the interface it is used in:
interface EntityState<V> {
ids: string[] | number[];
entities: { [id: string | id: number]: V };
}
This probably sounds retarded but HOW do I figure out the answer
to this seemingly incredibly simple question? What is <V>?