/** * * * Base interface for all entities that have a unique identifier. */ export interface Identifiable { id: T; }