remove "optional" from entity type

This commit is contained in:
2025-04-29 16:19:41 -07:00
parent 570ab8a178
commit ee4b11a308
3 changed files with 9 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
import { ICoordinates, IEntityWithId, IEntityWithOptionalTimestamp } from "./SharedEntities";
import { ICoordinates, IEntityWithId, IEntityWithTimestamp } from "./SharedEntities";
export interface IParkingStructure extends IEntityWithOptionalTimestamp, IEntityWithId {
export interface IParkingStructure extends IEntityWithTimestamp, IEntityWithId {
address: string;
capacity: number;
spotsAvailable: number;