Interface MediaSessionState

interface MediaSessionState {
    isSessionActive: boolean;
    isLoading: boolean;
    participants: Participant[];
    roomName: string;
    hostName: string;
}

Properties

isSessionActive: boolean
isLoading: boolean
participants: Participant[]
roomName: string
hostName: string