chore: added Czech variation of working timetable

This commit is contained in:
2025-04-30 20:31:45 +02:00
parent c4473673a7
commit 86185a8f98
5 changed files with 641 additions and 309 deletions
+18
View File
@@ -149,6 +149,24 @@ export interface StopRow {
stockMass: number;
}
export interface StopRowCZ {
pointName: string;
pointKm: string;
isMain: boolean;
stopTime: number;
stopType: string;
scheduledArrivalDate: Date | null;
scheduledDepartureDate: Date | null;
driveTime: number;
sceneryName: string;
arrivalSpeed: number;
departureSpeed: number;
headUnits: string[];
stockVmax: number;
stockLength: number;
stockMass: number;
}
export interface TimetablePathData {
sceneryName: string;
sceneryData: SceneryData | null;