7 lines
307 B
TypeScript
7 lines
307 B
TypeScript
import { Exception, Result } from '@zxing/library';
|
|
import { IScannerControls } from './IScannerControls';
|
|
/**
|
|
* Callback format for continuous decode scan.
|
|
*/
|
|
export declare type DecodeContinuouslyCallback = (result: Result | undefined, error: Exception | undefined, controls: IScannerControls) => void;
|