export interface IAudioBufferOptions {
    length: number;

    numberOfChannels?: number;

    sampleRate: number;
}
