import { GeoLocation } from './geo-location';
export interface RoomConfig {
    roomName: string;
    playerName?: string;
    password?: string;
    maxPlayers?: number;
    public?: boolean;
    geo?: GeoLocation;
    token: string;
    noPlayer?: boolean;
}
