9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
export declare class BitStream {
|
|
private bytes;
|
|
private byteOffset;
|
|
private bitOffset;
|
|
constructor(bytes: Uint8ClampedArray);
|
|
readBits(numBits: number): number;
|
|
available(): number;
|
|
}
|