You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
577 B
15 lines
577 B
import { BrowserCodeReader } from './BrowserCodeReader';
|
|
import DecodeHintType from '../core/DecodeHintType';
|
|
/**
|
|
* @deprecated Moving to @zxing/browser
|
|
*
|
|
* Barcode reader reader to use from browser.
|
|
*/
|
|
export declare class BrowserBarcodeReader extends BrowserCodeReader {
|
|
/**
|
|
* Creates an instance of BrowserBarcodeReader.
|
|
* @param {number} [timeBetweenScansMillis=500] the time delay between subsequent decode tries
|
|
* @param {Map<DecodeHintType, any>} hints
|
|
*/
|
|
constructor(timeBetweenScansMillis?: number, hints?: Map<DecodeHintType, any>);
|
|
}
|
|
|