Type Alias EntityMapValues<M>Protected

EntityMapValues<M>: {
    [P in keyof M]: Exactify<M[P]>
}[keyof Exactify<M>]

Returns a union of exactified entity types in an EntityMap.

Type Parameters