mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
export interface DispatcherHistory {
|
|
id: string;
|
|
|
|
currentDuration: number;
|
|
dispatcherId: number;
|
|
dispatcherName: string;
|
|
dispatcherLevel: number | null;
|
|
dispatcherRate: number;
|
|
dispatcherIsSupporter: boolean;
|
|
dispatcherStatus?: number;
|
|
isOnline: boolean;
|
|
lastOnlineTimestamp: number;
|
|
region: string;
|
|
stationHash: string;
|
|
stationName: string;
|
|
timestampFrom: number;
|
|
timestampTo?: number;
|
|
}
|