9 lines
289 B
TypeScript
9 lines
289 B
TypeScript
|
import ResonatorAudioContext from './audio-context';
|
||
|
export default class EffectBus {
|
||
|
private context;
|
||
|
private inputNode;
|
||
|
private channelMerger;
|
||
|
constructor(context: ResonatorAudioContext, input: AudioNode, output: AudioNode);
|
||
|
connect(node: AudioNode): void;
|
||
|
}
|