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