UNPKG

standardized-audio-context

Version:

A cross-browser wrapper for the Web Audio API which aims to closely follow the standard.

7 lines 423 B
import { IOfflineAudioContext } from './offline-audio-context'; import { IOfflineAudioContextOptions } from './offline-audio-context-options'; export interface IOfflineAudioContextConstructor { new (options: IOfflineAudioContextOptions): IOfflineAudioContext; new (numberOfChannels: number, length: number, sampleRate: number): IOfflineAudioContext; } //# sourceMappingURL=offline-audio-context-constructor.d.ts.map