/** * * * Interface for entities that have a human-readable name. */ export interface Named { name: string | undefined; }