UNPKG

@videosdk.live/js-sdk

Version:

<h1 align="center"> <img src="https://static.videosdk.live/videosdk_logo_website_black.png"/><br/> <p align="center"> Video SDK for JavaScript<br/> <a href="https://videosdk.live/">videosdk.live</a> </p> </h1>

25 lines (24 loc) 525 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 {};