mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
9 lines
270 B
Plaintext
9 lines
270 B
Plaintext
#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();
|
|
};
|