Files
ladybird/Userland/Libraries/LibWeb/WebAudio/AudioDestinationNode.idl
Shannon Booth 5eb80b8697 WebAudio: Add IDL interface for AudioDestinationNode
This is an AudioNode representing the final audio destination and is
what the user will ultimately hear.

This node is used as one of the connecting nodes in athenacrisis.com

Add a placeholder for the interface without anything backing it for now.
2024-07-24 11:14:46 +02:00

8 lines
227 B
Plaintext

#import <WebAudio/AudioNode.idl>
// https://webaudio.github.io/web-audio-api/#AudioDestinationNode
[Exposed=Window]
interface AudioDestinationNode : AudioNode {
[FIXME] readonly attribute unsigned long maxChannelCount;
};