UNPKG

scanbot-web-sdk

Version:

Scanbot Web Document and Barcode Scanner SDK

10 lines (9 loc) 424 B
import React from 'react'; import { BarcodeScannerScreenConfiguration, BarcodeScannerUiResult } from '../../configuration'; export declare class Props { configuration: BarcodeScannerScreenConfiguration; onClose: () => void; onSubmit: (barcodeScannerResult: BarcodeScannerUiResult) => void; onError: (error: Error) => void; } export declare function BarcodeScannerController(props: Props): React.JSX.Element;