Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MediaDeviceInfo

The MediaDevicesInfo interface contains information that describes a single media input or output device. Available only in secure contexts.

interface MediaDeviceInfo {
readonly deviceId: string;
readonly groupId: string;
readonly kind: MediaDeviceKind;
readonly label: string;
toJSON(): any;
}
var MediaDeviceInfo: {
prototype: MediaDeviceInfo;
new (): MediaDeviceInfo;
}
;

§Properties

§
readonly deviceId: string
[src]
§
readonly groupId: string
[src]
§
readonly kind: MediaDeviceKind
[src]
§
readonly label: string
[src]

§Methods

§
toJSON(): any
[src]