UNPKG

@zxing/browser

Version:

ZXing for JS's browser layer.

16 lines 549 B
import { MultiFormatOneDReader } from '@zxing/library'; import { BrowserCodeReader } from './BrowserCodeReader'; /** * Reader to be used for any One Dimension type barcode. */ export class BrowserMultiFormatOneDReader extends BrowserCodeReader { /** * Creates an instance of BrowserBarcodeReader. * @param {Map<DecodeHintType, any>} hints? * @param options */ constructor(hints, options) { super(new MultiFormatOneDReader(hints), hints, options); } } //# sourceMappingURL=BrowserMultiFormatOneDReader.js.map