UNPKG

capacitor-plugin-scanbot-sdk

Version:

Scanbot Document and Barcode Scanner SDK for Capacitor

24 lines (22 loc) 787 B
import { ParametricFilter } from '../core/image_processing/ParametricFilters'; import type { DeepPartial } from '../core/utils/utils'; /** Options for creating a document from images. */ export declare class AddPageOptions { /** The list of filters applied to the page. If not specified, no filters are applied. */ filters: ParametricFilter[] | null; /** The index at which the new page will be inserted. If not provided, the page will be added at the end of the document. */ index: number | null; /** Recognizes documents on created page. Default is true */ documentDetection: boolean; /** @param source {@displayType `DeepPartial<AddPageOptions>`} */ constructor(source?: DeepPartial<AddPageOptions>); }