mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 01:05:07 +00:00
8 lines
270 B
Text
8 lines
270 B
Text
#import <WebAudio/BaseAudioContext.idl>
|
|
|
|
// https://webaudio.github.io/web-audio-api/#AudioContext
|
|
[Exposed=Window]
|
|
interface AudioContext : BaseAudioContext {
|
|
// FIXME: Should be constructor (optional AudioContextOptions contextOptions = {});
|
|
constructor();
|
|
};
|