angular2-qrscanner
Version:
QrScanner will scan for a QRCode from your Web-cam and return its string representation by drawing the captured image onto a 2D Canvas and use [@LazarSoft/jsqrcode](https://github.com/LazarSoft/jsqrcode) to check for a valid QRCode every *Xms*
19 lines (18 loc) • 626 B
TypeScript
export declare class QRCodeDataBlockReader {
blockPointer: number;
bitPointer: number;
dataLength: number;
blocks: any;
numErrorCorrectionCode: any;
dataLengthMode: number;
static sizeOfDataLengthInfo: number[][];
constructor(blocks: any, version: any, numErrorCorrectionCode: any);
getNextBits(numBits: any): any;
NextMode(): any;
getDataLength(modeIndicator: any): any;
getRomanAndFigureString(dataLength: any): any;
getFigureString(dataLength: any): any;
get8bitByteArray(dataLength: any): any;
getKanjiString(dataLength: any): any;
readonly DataByte: any;
}