Interface EncodedAudioChunk
interface EncodedAudioChunk {
byteLength: number;
duration: number;
timestamp: number;
type: EncodedAudioChunkType;
copyTo(destination: AllowSharedBufferSource): void;
}
byteLength: number;
duration: number;
timestamp: number;
type: EncodedAudioChunkType;
copyTo(destination: AllowSharedBufferSource): void;
}
 Index
Properties
Methods
 Properties
ReadonlybyteLength 
byteLength: number
Readonlyduration
duration: number
Readonlytimestamp
timestamp: number
Readonlytype
 Methods
copyTo 
- copyTo(destination: AllowSharedBufferSource): void
- Parameters- destination: AllowSharedBufferSource
 - Returns void