Skip to content

1.3.8

Compare
Choose a tag to compare
@Glinkis Glinkis released this 28 Jan 13:13
· 25 commits to master since this release

Exposes the EntityKey generic type.
Allows you to extract the value typer of the entity key:

interface Obj {
  id: number
}
const Type = EntityKey<Entity<Obj, 'id'>>
// Type is now of the "string" type.