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*
16 lines (15 loc) • 471 B
TypeScript
export declare class ErrorCorrectionLevel {
static forBits(bits: any): ErrorCorrectionLevel;
static L: ErrorCorrectionLevel;
static M: ErrorCorrectionLevel;
static Q: ErrorCorrectionLevel;
static H: ErrorCorrectionLevel;
static FOR_BITS: ErrorCorrectionLevel[];
ordinal_Renamed_Field: any;
bits: any;
name: any;
constructor(ordinal: any, bits: any, name: any);
readonly Bits: any;
readonly Name: any;
ordinal(): any;
}