mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
19 lines
407 B
TypeScript
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;
|
|
} |