godot-webrtc-mplayer-testing/types.ts

10 lines
132 B
TypeScript
Raw Normal View History

2021-11-17 08:18:12 -06:00
export interface Client {
socket: WebSocket;
}
export interface Lobby {
name: string;
secret: string;
clients: Client[];
}