UNPKG

scanbot-web-sdk

Version:

Scanbot Web Document and Barcode Scanner SDK

9 lines (8 loc) 540 B
import type { PageImageSource } from "../../configuration/native/PageImageSource"; import { DocumentScannerScanResponse } from "../../../core-types"; export type DocumentDetectionUIResult = { value: DocumentScannerScanResponse; source: PageImageSource; }; export type RtuDocumentDetectionResultPromise = undefined | Promise<DocumentDetectionUIResult | null>; export declare function createRtuDocumentDetectionResultPromise(response: Promise<DocumentScannerScanResponse>, source: PageImageSource): RtuDocumentDetectionResultPromise;