12 lines
329 B
Haxe
12 lines
329 B
Haxe
package js.html;
|
|
|
|
@:native("InputDeviceInfo") extern class InputDeviceInfo {
|
|
function new();
|
|
function getCapabilities():MediaTrackCapabilities;
|
|
final deviceId : String;
|
|
final groupId : String;
|
|
final kind : js.html.MediaDeviceKind;
|
|
final label : String;
|
|
function toJSON():Dynamic;
|
|
static var prototype : InputDeviceInfo;
|
|
} |