export interface Client { socket: WebSocket; } export interface Lobby { name: string; secret: string; clients: Client[]; }