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*
9 lines (8 loc) • 326 B
TypeScript
export declare class ReedSolomonDecoder {
field: any;
constructor(field: any);
decode(received: any, twoS: any): void;
runEuclideanAlgorithm(a: any, b: any, R: any): any;
findErrorLocations(errorLocator: any): any;
findErrorMagnitudes(errorEvaluator: any, errorLocations: any, dataMatrix: any): any;
}