mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00:00
This is a base class of a few different audio nodes, most notably for our immediate needs - OscillatorNode.
11 lines
333 B
Plaintext
11 lines
333 B
Plaintext
#import <DOM/EventHandler.idl>
|
|
#import <WebAudio/AudioNode.idl>
|
|
|
|
// https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode
|
|
[Exposed=Window]
|
|
interface AudioScheduledSourceNode : AudioNode {
|
|
attribute EventHandler onended;
|
|
undefined start(optional double when = 0);
|
|
undefined stop(optional double when = 0);
|
|
};
|