mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
11 lines
328 B
TypeScript
11 lines
328 B
TypeScript
import { StopStatus, TimetablePathElement, Train, TrainStop } from '../../typings/common';
|
|
|
|
export interface SceneryTimetableRow {
|
|
checkpointStop: TrainStop;
|
|
train: Train;
|
|
prevElement: TimetablePathElement | null;
|
|
nextElement: TimetablePathElement | null;
|
|
currentElement: TimetablePathElement;
|
|
status: StopStatus;
|
|
}
|