mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
c9b2c1c747
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);
|
|
};
|