type Chunk = {
    timestamp: number;
    data: ArrayBuffer;
    type: string;
};
export default Chunk;
