Dodano kolumnę z aktywnymi RJ w zakładce ze sceneriami

This commit is contained in:
2020-08-29 23:50:04 +02:00
parent 5f48c4688f
commit 2f482d94b2
2 changed files with 104 additions and 39 deletions
+9 -1
View File
@@ -19,5 +19,13 @@ export default interface Train {
locoURL: string;
locoType: string;
routeDistance: number;
stopPoints?: [];
stopPoints: {
arrivalTime: string;
arrivalDelay: number;
departureTime: string;
departureDelay: number;
pointNameRAW: string;
pointStopType: string;
confirmed: boolean;
}[];
}