Interface UserPreferred

The user's preferred device IDs for each source type, ordered most-preferred first.

interface UserPreferred {
    microphoneIDs: string[];
    cameraIDs: string[];
    displayIDs: number[];
    appleDeviceIDs: string[];
}

Properties

microphoneIDs: string[]

Preferred microphone IDs (matching Microphone.id), most-preferred first.

cameraIDs: string[]

Preferred camera IDs (matching Camera.id), most-preferred first.

displayIDs: number[]

Preferred display IDs (matching Display.id), most-preferred first.

appleDeviceIDs: string[]

Preferred Apple device IDs (matching AppleDevice.id), most-preferred first.

Generated using TypeDoc