ladybird/Libraries/LibWeb/WebAudio/ScriptProcessorNode.idl
Jelle Raaijmakers 35ca7f82b0 LibWeb: Add BaseAudioContext::createScriptProcessor()
This is a deprecated node, but it's still widely used on the web.
2025-07-25 11:48:04 +02:00

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;
};