mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
34 lines
615 B
TypeScript
34 lines
615 B
TypeScript
import { Availability, ActiveScenery, ScheduledTrain } from '../../store/typings';
|
|
import { StationRoutes } from './StationRoutes';
|
|
|
|
export default interface Station {
|
|
name: string;
|
|
|
|
generalInfo?: {
|
|
name: string;
|
|
url: string;
|
|
abbr: string;
|
|
hash?: string;
|
|
|
|
reqLevel: number;
|
|
// supportersOnly: boolean;
|
|
|
|
lines: string;
|
|
project: string;
|
|
projectUrl?: string;
|
|
|
|
signalType: string;
|
|
controlType: string;
|
|
|
|
SUP: boolean;
|
|
authors?: string[];
|
|
|
|
availability: Availability;
|
|
routes: StationRoutes;
|
|
|
|
checkpoints: string[];
|
|
};
|
|
|
|
onlineInfo?: ActiveScenery;
|
|
}
|