UNPKG

@zxing/library

Version:

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

11 lines (10 loc) 417 B
import BitArray from '../../../../common/BitArray'; import GeneralAppIdDecoder from './GeneralAppIdDecoder'; export default abstract class AbstractExpandedDecoder { private readonly information; private readonly generalDecoder; constructor(information: BitArray); protected getInformation(): BitArray; protected getGeneralDecoder(): GeneralAppIdDecoder; abstract parseInformation(): string; }