scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
9 lines (8 loc) • 514 B
TypeScript
import { ViewFinderScannerConfiguration } from "./view-finder-scanner-configuration";
import { DeepPartial, TextPatternScannerResult, TextPatternScannerConfiguration } from "../../core-types";
export declare class TextPatternScannerViewConfiguration extends ViewFinderScannerConfiguration {
constructor();
scannerConfiguration?: DeepPartial<TextPatternScannerConfiguration>;
onTextDetected?: (e: TextPatternScannerResult) => void;
static fromJson(json: any): TextPatternScannerViewConfiguration;
}