The options inside createAudioContext()

interface AudioContextRequest {
    bufferLength?: number;
    channelCount?: number;
    fixedFrameCount?: boolean;
    processors: string[];
    sampleRate?: number;
}

Properties

bufferLength?: number
channelCount?: number
fixedFrameCount?: boolean
processors: string[]
sampleRate?: number