Victor Porof | 6e09692 | 2022-06-10 13:01:05 +0000 | [diff] [blame] | 1 | // 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 | |
| 6 | partial interface HTMLMediaElement { |
| 7 | [SecureContext] readonly attribute DOMString sinkId; |
| 8 | [SecureContext] Promise<undefined> setSinkId (DOMString sinkId); |
| 9 | }; |
| 10 | |
| 11 | partial interface MediaDevices { |
| 12 | Promise<MediaDeviceInfo> selectAudioOutput(optional AudioOutputOptions options = {}); |
| 13 | }; |
| 14 | |
| 15 | dictionary AudioOutputOptions { |
| 16 | DOMString deviceId = ""; |
| 17 | }; |