Interface for the result of check system requirements.

if audio is false, it means the system cannot support VoIP, but you can join the audio by phone.

interface MediaCompatiblity {
    audio: boolean;
    screen: boolean;
    video: boolean;
}

Properties

Properties

audio: boolean
screen: boolean
video: boolean