These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
385 B
Text
10 lines
385 B
Text
// https://webaudio.github.io/web-audio-api/#ChannelSplitterNode
|
|
[Exposed=Window]
|
|
interface ChannelSplitterNode : AudioNode {
|
|
constructor (BaseAudioContext context, optional ChannelSplitterOptions options = {});
|
|
};
|
|
|
|
// https://webaudio.github.io/web-audio-api/#ChannelSplitterOptions
|
|
dictionary ChannelSplitterOptions : AudioNodeOptions {
|
|
unsigned long numberOfOutputs = 6;
|
|
};
|