blob: 80ceb225308a057d99ce39f575ebcf8eb40ab5fb [file] [log] [blame]
Victor Porof6e096922022-06-10 13:01:05 +00001// GENERATED CONTENT - DO NOT EDIT
2// Content was automatically extracted by Reffy into webref
3// (https://github.com/w3c/webref)
4// Source: Audio Output Devices API (https://w3c.github.io/mediacapture-output/)
5
6partial interface HTMLMediaElement {
7 [SecureContext] readonly attribute DOMString sinkId;
8 [SecureContext] Promise<undefined> setSinkId (DOMString sinkId);
9};
10
11partial interface MediaDevices {
12 Promise<MediaDeviceInfo> selectAudioOutput(optional AudioOutputOptions options = {});
13};
14
15dictionary AudioOutputOptions {
16 DOMString deviceId = "";
17};