mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
9 lines
277 B
Text
9 lines
277 B
Text
#import <DOM/EventHandler.idl>
|
|
#import <WebAudio/AudioNode.idl>
|
|
|
|
// https://webaudio.github.io/web-audio-api/#ScriptProcessorNode
|
|
[Exposed=Window]
|
|
interface ScriptProcessorNode : AudioNode {
|
|
attribute EventHandler onaudioprocess;
|
|
readonly attribute long bufferSize;
|
|
};
|