Interface EncodedAudioChunk

    interface EncodedAudioChunk {
        byteLength: number;
        duration: number;
        timestamp: number;
        type: EncodedAudioChunkType;
        copyTo(destination: AllowSharedBufferSource): void;
    }

    Properties

    byteLength: number
    duration: number
    timestamp: number

    Methods