UNPKG

@videosdk.live/react-native-sdk

Version:

<h1 align="center"> <img src="https://static.videosdk.live/videosdk_logo_website_black.png"/><br/> <p align="center"> Video SDK React Native App <br/> <a href="https://videosdk.live/">videosdk.live</a> </p> </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 { };