mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
filtrowanie ukrytych szlaków
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Availability, OnlineScenery, ScheduledTrain } from '../../store/typings';
|
||||
import StationRoutes from './StationRoutes';
|
||||
import { StationRoutes } from './StationRoutes';
|
||||
|
||||
export default interface Station {
|
||||
name: string;
|
||||
|
||||
@@ -1,25 +1,8 @@
|
||||
export default interface StationRoutes {
|
||||
oneWay: {
|
||||
name: string;
|
||||
catenary: boolean;
|
||||
SBL: boolean;
|
||||
TWB: boolean;
|
||||
isInternal: boolean;
|
||||
tracks: number;
|
||||
speed: number;
|
||||
length: number;
|
||||
}[];
|
||||
import { StationRoutesInfo } from '../../store/typings';
|
||||
|
||||
twoWay: {
|
||||
name: string;
|
||||
catenary: boolean;
|
||||
SBL: boolean;
|
||||
TWB: boolean;
|
||||
isInternal: boolean;
|
||||
tracks: number;
|
||||
speed: number;
|
||||
length: number;
|
||||
}[];
|
||||
export interface StationRoutes {
|
||||
oneWay: StationRoutesInfo[];
|
||||
twoWay: StationRoutesInfo[];
|
||||
|
||||
/* [catenary, noCatenary] */
|
||||
oneWayCatenaryRouteNames: string[];
|
||||
|
||||
Reference in New Issue
Block a user