openvidu/openvidu-browser/lib/OpenViduInternal/Interfaces/Public/Device.d.ts

18 lines
446 B
TypeScript
Raw Normal View History

2018-04-26 15:33:47 +02:00
/**
* See [[OpenVidu.getDevices]]
*/
export interface Device {
/**
* `"videoinput"`, `"audioinput"`
*/
kind: string;
/**
* Unique ID for the device. Use it on `audioSource` or `videoSource` properties of [[PublisherProperties]]
*/
deviceId: string;
/**
* Description of the device. An empty string if the user hasn't granted permissions to the site to access the device
*/
label: string;
}