D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
image-size
/
dist
/
utils
/
Filename :
bit-reader.d.ts
back
Copy
/** This class helps read Uint8Array bit-by-bit */ export declare class BitReader { private readonly input; private readonly endianness; private byteOffset; private bitOffset; constructor(input: Uint8Array, endianness: 'big-endian' | 'little-endian'); /** Reads a specified number of bits, and move the offset */ getBits(length?: number): number; }