mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-05 13:43:29 +00:00
35ca7f82b0
This is a deprecated node, but it's still widely used on the web.
10 lines
277 B
Plaintext
10 lines
277 B
Plaintext
#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;
|
|
};
|