capacitor-plugin-scanbot-sdk
Version:
Scanbot Document and Barcode Scanner SDK for Capacitor
28 lines (24 loc) • 867 B
TypeScript
import type { DeepPartial } from '../../utils/utils';
import { PartiallyConstructible } from '../../utils/utils';
/**
Configuration of visualization of the scanning progress - indeterminate progress.
*/
export declare class CheckScanningProgressConfiguration extends PartiallyConstructible {
/**
Enable or disable the scanning progress visualization.
Default is true
*/
enabled: boolean;
/**
The color of the scanning progress.
Default is "#40A9FF"
*/
progressColor: string;
/**
The duration of a single scanning progress cycle animation in milliseconds.
Default is 1000
*/
animationDuration: number;
/** @param source {@displayType `DeepPartial<CheckScanningProgressConfiguration>`} */
constructor(source?: DeepPartial<CheckScanningProgressConfiguration>);
}