mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
23 lines
659 B
TypeScript
23 lines
659 B
TypeScript
export default interface Station {
|
|
stationName: string;
|
|
stationHash: string;
|
|
maxUsers: number;
|
|
currentUsers: number;
|
|
spawnString: string;
|
|
dispatcherRate: number;
|
|
dispatcherName: string;
|
|
dispatcherExp: number;
|
|
dispatcherId: number;
|
|
stationLines: string;
|
|
stationProject: string;
|
|
reqLevel: string;
|
|
supportersOnly: string;
|
|
signalType: string;
|
|
controlType: string;
|
|
default: boolean;
|
|
nonPublic: boolean;
|
|
routes: { oneWay: { catenary: number; noCatenary: number; }, twoWay: { catenary: number; noCatenary: number; } };
|
|
online: boolean;
|
|
occupiedTo: string;
|
|
statusTimestamp: number;
|
|
} |