Zamiana karty stacji na zakładkę stacji [W.I.P.]

This commit is contained in:
2020-11-12 23:04:18 +01:00
parent e00c58f509
commit 857de63f27
13 changed files with 816 additions and 102 deletions
+18
View File
@@ -0,0 +1,18 @@
import TrainStop from "./TrainStop";
export default interface ScheduledTrain {
trainNo: number;
driverName: string;
driverId: number;
currentStationName: string;
currentStationHash: string;
category: string;
stopInfo: TrainStop;
terminatesAt: string;
beginsAt: string;
nearestStop: string;
stopLabel: string;
stopStatus: string;
}