Optymalizacja aplikcji, małe poprawki

This commit is contained in:
2021-02-27 09:28:07 +01:00
parent 3c5a0d09ca
commit f55e13201d
6 changed files with 143 additions and 835 deletions
@@ -0,0 +1,33 @@
interface ISceneryInfoData {
stationName: string;
stationURL: string;
stationLines: string;
stationProject: string;
reqLevel: string;
supportersOnly: string;
signalType: string;
controlType: string;
SBL: string;
twoWayBlock: string;
routesOneWayCatenary: number;
routesOneWayOther: number;
routesTwoWayCatenary: number;
routesToWayOther: number;
default: boolean;
nonPublic: boolean;
unavailable: boolean;
hasData: boolean;
stops: string[];
checkpoints: string[];
currentDispatcher: string;
currentDispatcherId: number;
currentDispatcherFrom: number;
dispatcherHistory: { dispatcherName: string; dispatcherId: number; dispatcherFrom: number; dispatcherTo: number }[];
}
export default ISceneryInfoData;