@zxing/library
Version:
TypeScript port of ZXing multi-format 1D/2D barcode image processing library.
18 lines (17 loc) • 526 B
TypeScript
import { int } from '../../../customTypings';
/**
* @author Guenther Grau
*/
export default class BarcodeMetadata {
private columnCount;
private errorCorrectionLevel;
private rowCountUpperPart;
private rowCountLowerPart;
private rowCount;
constructor(columnCount: int, rowCountUpperPart: int, rowCountLowerPart: int, errorCorrectionLevel: int);
getColumnCount(): int;
getErrorCorrectionLevel(): int;
getRowCount(): int;
getRowCountUpperPart(): int;
getRowCountLowerPart(): int;
}