/** * * * Interface for entities that support soft deletion through an end-of-life timestamp. */ export interface HasEndOfLife { endOfLife: number | undefined; }