Change properties to match GraphQL input and query result

This commit is contained in:
2025-07-19 12:15:41 -04:00
parent 8ee1f1522e
commit 182587596c
4 changed files with 22 additions and 22 deletions

View File

@@ -1,14 +1,14 @@
import { IParkingStructure } from "../../entities/ParkingRepositoryEntities";
export interface ParkingStructureCountOptions {
startUnixEpochMs: Date;
endUnixEpochMs: Date;
from: Date;
to: Date;
intervalMs: number;
}
export interface HistoricalParkingAverageQueryResult {
fromUnixEpochMs: Date;
toUnixEpochMs: Date;
from: Date;
to: Date;
averageSpotsAvailable: number;
}