mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
14 lines
379 B
TypeScript
14 lines
379 B
TypeScript
import { StopStatus, Train, TrainStop } from '../../typings/common';
|
|
|
|
export interface SceneryTimetableRow {
|
|
checkpointStop: TrainStop;
|
|
train: Train;
|
|
prevDepartureLine: string | null;
|
|
nextArrivalLine: string | null;
|
|
departureLine: string | null;
|
|
arrivingLine: string | null;
|
|
prevStationName: string | null;
|
|
nextStationName: string | null;
|
|
status: StopStatus;
|
|
}
|