Files
Stackq/node_modules/@zxing/browser/cjs/readers/BrowserMultiFormatOneDReader.d.ts
T
2026-02-17 14:58:53 -06:00

15 lines
550 B
TypeScript

import { DecodeHintType } from '@zxing/library';
import { BrowserCodeReader } from './BrowserCodeReader';
import { IBrowserCodeReaderOptions } from './IBrowserCodeReaderOptions';
/**
* Reader to be used for any One Dimension type barcode.
*/
export declare class BrowserMultiFormatOneDReader extends BrowserCodeReader {
/**
* Creates an instance of BrowserBarcodeReader.
* @param {Map<DecodeHintType, any>} hints?
* @param options
*/
constructor(hints?: Map<DecodeHintType, any>, options?: IBrowserCodeReaderOptions);
}