UNPKG

@videosdk.live/react-sdk

Version:

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