@zxing/library
Version:
TypeScript port of ZXing multi-format 1D/2D barcode image processing library.
14 lines (13 loc) • 381 B
JavaScript
import GeneralAppIdDecoder from './GeneralAppIdDecoder';
export default class AbstractExpandedDecoder {
constructor(information) {
this.information = information;
this.generalDecoder = new GeneralAppIdDecoder(information);
}
getInformation() {
return this.information;
}
getGeneralDecoder() {
return this.generalDecoder;
}
}