scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
14 lines (13 loc) • 599 B
TypeScript
import type { DeepPartial } from "../utils";
import { FindAndPickScanningMode } from "../barcode/FindAndPickScanningModeUseCase";
import { MultipleScanningMode } from "../barcode/MultipleScanningModeUseCase";
import { SingleScanningMode } from "../barcode/SingleScanningModeUseCase";
/**
Configuration of the barcode scanner screen's behavior.
*/
export type BarcodeUseCase = SingleScanningMode | MultipleScanningMode | FindAndPickScanningMode;
/** @internal */
export declare namespace BarcodeUseCase {
/** @internal */
function from(source: DeepPartial<BarcodeUseCase>): BarcodeUseCase;
}