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*
17 lines (16 loc) • 484 B
TypeScript
export declare class BitMatrix {
width: number;
height: number;
rowSize: number;
bits: any;
constructor(width: number, height?: number);
readonly Width: number;
readonly Height: number;
readonly Dimension: number;
URShift(number: any, bits: any): any;
get_Renamed(x: any, y: any): any;
set_Renamed(x: any, y: any): any;
flip(x: any, y: any): void;
clear(): void;
setRegion(left: any, top: any, width: any, height: any): void;
}