/** * Every database entity should implement this one. * It does nothing more but guarantee there is an id column. */ interface IdentifiableEntityInterface { /** * the entity id */ id: number; }