UNPKG

jsqr

Version:

A pure javascript QR code reading library that takes in raw images and will locate, extract and parse any QR code found within.

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