mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
19 lines
435 B
TypeScript
19 lines
435 B
TypeScript
export default interface StationAPIData {
|
|
dispatcherId: number;
|
|
dispatcherName: string;
|
|
dispatcherIsSupporter: boolean;
|
|
stationName: string;
|
|
stationHash: string;
|
|
region: string;
|
|
maxUsers: number;
|
|
currentUsers: number;
|
|
spawn: number;
|
|
lastSeen: number;
|
|
dispatcherExp: number;
|
|
nameFromHeader: string;
|
|
spawnString: string | null;
|
|
networkConnectionString: string;
|
|
isOnline: number;
|
|
dispatcherRate: number;
|
|
}
|