chore(filters): added station filtering by route types and maximum count

This commit is contained in:
2026-03-12 21:59:53 +01:00
parent 1a39c9054b
commit ffe26a8fd2
8 changed files with 62 additions and 40 deletions
+7 -1
View File
@@ -130,6 +130,12 @@ export interface StationRoutes {
singleOtherNames: string[];
doubleElectrifiedNames: string[];
doubleOtherNames: string[];
singleElectrifiedInternalNames: string[];
singleOtherInternalNames: string[];
doubleElectrifiedInternalNames: string[];
doubleOtherInternalNames: string[];
sblNames: string[];
minRouteSpeed: number;
@@ -241,4 +247,4 @@ export interface TooltipTrainInfo {
headVehicleName: string;
stockCount: number;
trainTimetableCategory?: string;
}
}