Files
stacjownik/src/scripts/interfaces/ScheduledTrain.ts
T

19 lines
407 B
TypeScript

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;
stopStatusID: number;
}