import { IAudioBufferSourceNode, IAudioBufferSourceOptions } from '../interfaces'; import { TContext } from './context'; export type TAudioBufferSourceNodeConstructor = new ( context: T, options?: Partial ) => IAudioBufferSourceNode;