16 lines
261 B
TypeScript
16 lines
261 B
TypeScript
import type { ServiceStatus } from '$lib/types/serviceStatus';
|
|
|
|
interface State {
|
|
session: string;
|
|
playerCount: number;
|
|
track: string;
|
|
maxConnections: number;
|
|
}
|
|
|
|
export interface Server {
|
|
id: number;
|
|
name: string;
|
|
status: ServiceStatus;
|
|
state: State;
|
|
}
|