UNPKG

@videosdk.live/react-native-sdk

Version:

<h1 align="center"> <img src="https://cdn.videosdk.live/docs/images/react-native/banner.png" /><br/> </h1>

37 lines (35 loc) 731 B
export class DeviceInfo extends MediaDeviceInfo { } export class CameraDeviceInfo extends DeviceInfo { constructor(deviceId: string, groupId: string, kind: string, label: string, facing: string); /** * @type {string} */ facingMode: string; } export class AudioDeviceInfo extends DeviceInfo { } declare class MediaDeviceInfo { constructor(deviceId: any, groupId: any, kind: any, label: any, facing: any); /** * @type {string} */ deviceId: string; /** * @type {string} */ groupId: string; /** * @type {string} */ kind: string; /** * @type {string} */ label: string; /** * @type {string} */ facing: string; } export { };