export function sizedDataView(size: number): DataView export function filledDataView(bytes: number[]): DataView /** * copies max possible number of bytes from src to dest (min of both sizes) */ export function memcpy(dest: DataView, src: DataView): void