/** * A DataBuffer is an Uint8Array with an integrated DataView */ export default class DataBuffer extends Uint8Array { view: DataView; constructor(lengthOrUint8Array?: number | Uint8Array); slice(begin?: number, end?: number): DataBuffer; }