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.
14 lines (13 loc) • 351 B
TypeScript
export interface Version {
infoBits: number;
versionNumber: number;
alignmentPatternCenters: number[];
errorCorrectionLevels: Array<{
ecCodewordsPerBlock: number;
ecBlocks: Array<{
numBlocks: number;
dataCodewordsPerBlock: number;
}>;
}>;
}
export declare const VERSIONS: Version[];