import { ICoordinates, IEntityWithId, IEntityWithTimestamp } from "./SharedEntities"; export interface IParkingStructure extends IEntityWithTimestamp, IEntityWithId { address: string; capacity: number; spotsAvailable: number; coordinates: ICoordinates; name: string; } export interface IParkingStructureTimestampRecord { timestampMs: Date; id: string; spotsAvailable: number; } // In the future, add support for viewing different levels of the structure