Naprawiono liczbę rozkładów dla scenerii

This commit is contained in:
2021-10-08 19:53:31 +02:00
parent 9bf1cb4735
commit f566d2e108
4 changed files with 18 additions and 15 deletions
+4 -7
View File
@@ -1,4 +1,3 @@
import Train from "./Train";
import ScheduledTrain from "./ScheduledTrain";
export default interface Station {
@@ -37,12 +36,10 @@ export default interface Station {
twoWay: { catenary: number; noCatenary: number };
};
checkpoints:
| {
checkpointName: string;
scheduledTrains: ScheduledTrain[];
}[]
| null;
checkpoints: {
checkpointName: string;
scheduledTrains: ScheduledTrain[];
}[];
stops: string[] | null;