Interface Room

interface Room {
    clients: {
        [id: string]: Client;
    };
    id: string;
    idHost: string;
}

Properties

Properties

clients: {
    [id: string]: Client;
}

Type declaration

id: string
idHost: string