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