UNPKG

@zxing/library

Version:

TypeScript port of ZXing multi-format 1D/2D barcode image processing library.

9 lines (8 loc) 323 B
import DecodedInformation from './DecodedInformation'; export default class BlockParsedResult { private readonly decodedInformation; private readonly finished; constructor(finished: boolean, decodedInformation?: DecodedInformation); getDecodedInformation(): DecodedInformation; isFinished(): boolean; }