Fix remaining issues with tests, and add implementation within InMemoryParkingRepository.ts

This commit is contained in:
2025-07-01 21:37:26 -04:00
parent 95fa610d77
commit 8fb296027d
3 changed files with 28 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ export interface IParkingStructure extends IEntityWithTimestamp, IEntityWithId {
name: string;
}
export interface IParkingStructureTimestampRecord extends IEntityWithTimestamp {
export interface IParkingStructureTimestampRecord {
timestampMs: number;
id: string;
spotsAvailable: number;