mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
import { StationRoutesInfo } from '../../store/typings';
|
|
|
|
export interface StationRoutes {
|
|
single: StationRoutesInfo[];
|
|
double: StationRoutesInfo[];
|
|
|
|
singleElectrifiedNames: string[];
|
|
singleOtherNames: string[];
|
|
doubleElectrifiedNames: string[];
|
|
doubleOtherNames: string[];
|
|
sblNames: string[];
|
|
|
|
minRouteSpeed: number;
|
|
maxRouteSpeed: number;
|
|
}
|