16 lines
549 B
JavaScript
16 lines
549 B
JavaScript
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
|