@zxing/library
Version:
TypeScript port of ZXing multi-format 1D/2D barcode image processing library.
18 lines • 751 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var GeneralAppIdDecoder_1 = require("./GeneralAppIdDecoder");
var AbstractExpandedDecoder = /** @class */ (function () {
function AbstractExpandedDecoder(information) {
this.information = information;
this.generalDecoder = new GeneralAppIdDecoder_1.default(information);
}
AbstractExpandedDecoder.prototype.getInformation = function () {
return this.information;
};
AbstractExpandedDecoder.prototype.getGeneralDecoder = function () {
return this.generalDecoder;
};
return AbstractExpandedDecoder;
}());
exports.default = AbstractExpandedDecoder;
//# sourceMappingURL=AbstractExpandedDecoder.js.map