fix train build

This commit is contained in:
natib21
2026-07-17 10:37:20 +00:00
parent b3042225e5
commit ef88240365
3 changed files with 60 additions and 4 deletions

View File

@@ -28,6 +28,10 @@ export interface Wagon {
status: Freight.WagonStatus;
currentYardId: string | null;
currentYard?: { id: string; label?: string; code?: string } | null;
/** Odd EXPORT run (Ethiopia → Djibouti); null when the wagon is not on a run. */
exportTrainNumber?: string | null;
/** Even IMPORT run (Djibouti → Ethiopia); always the export run + 1. */
importTrainNumber?: string | null;
notes?: string;
}