UNPKG

@videosdk.live/react-sdk

Version:

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

28 lines 562 B
export class DeviceInfo extends MediaDeviceInfo { } export class CameraDeviceInfo extends DeviceInfo { } export class MicrophoneDeviceInfo extends DeviceInfo { } export class PlaybackDeviceInfo extends DeviceInfo { } declare class MediaDeviceInfo { constructor(deviceId: any, groupId: any, kind: any, label: any); /** * @type {string} */ deviceId: string; /** * @type {string} */ groupId: string; /** * @type {string} */ kind: string; /** * @type {string} */ label: string; } export {};