mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-07 16:27:12 +00:00
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.
8 lines
227 B
Plaintext
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;
|
|
};
|