13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
|
|
export type WebSocketContextValue = {
|
||
|
|
connected: boolean;
|
||
|
|
send?: (msg: unknown) => void;
|
||
|
|
latestStats: { activeUsers: number; alerts: number } | null;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type InfoBarData = {
|
||
|
|
"system-clock-utc": string;
|
||
|
|
"system-clock-local": string;
|
||
|
|
"memory-cpu-status": string;
|
||
|
|
"thread-count": string;
|
||
|
|
};
|