Dodano sortowanie i filtrowanie pociągów

This commit is contained in:
2020-08-17 16:34:49 +02:00
parent 1df95e10f4
commit 8793bcb796
8 changed files with 583 additions and 260 deletions
+22
View File
@@ -0,0 +1,22 @@
export default interface Train {
mass: number;
length: number;
speed: number;
signal: string;
distance: number;
connectedTrack: string;
driverId: number;
trainNo: number;
driverName: string;
currentStationName: string;
route: string | null;
timetableId: number | null;
category: string | null;
sceneries: string | null;
TWR: boolean | null;
SKR: boolean | null;
noTimetable: boolean;
locoURL: string;
locoType: string;
routeDistance: number;
}