import { IAudioDestinationNode } from '../interfaces'; import { TContext } from './context'; export type TAudioDestinationNodeConstructor = new (context: T, channelCount: number) => IAudioDestinationNode;