UNPKG

@tjieco/library

Version:

TypeScript port of ZXing multi-format 1D/2D barcode image processing library, with Code128 and ITF support.

15 lines (14 loc) 503 B
import DecodeHintType from './../DecodeHintType'; import OneDReader from './OneDReader'; import Result from '../Result'; import BitArray from './../common/BitArray'; /** * @author dswitkin@google.com (Daniel Switkin) * @author Sean Owen */ export default class MultiFormatOneDReader extends OneDReader { private readers; constructor(hints: Map<DecodeHintType, any>); decodeRow(rowNumber: number, row: BitArray, hints: Map<DecodeHintType, any>): Result; reset(): void; }