| 25 | type EraProps = Omit<EraEntity, NonNullable<FunctionPropertyNames<EraEntity>> | '_name'>; |
| 26 | |
| 27 | class EraEntity implements Entity { |
| 28 | constructor(id: string, startTime: Date) { |
| 29 | this.id = id; |
| 30 | this.startTime = startTime; |
nothing calls this directly
no outgoing calls
no test coverage detected