UNPKG

@seontechnologies/seon-id-verification

Version:

An advanced SDK featuring web components for natural person identification through document scanning, facial recognition, hand gesture, and face turning detection, designed for secure and efficient user verification.

15 lines (14 loc) 510 B
import { TBaseConfigOptions, TConfigOptions } from '../shared/types/repository/seon-sdk-repository'; export declare const SEONRepository: TExternalConfigStore; export declare const isSdkStart: { value: boolean; setValue: (value: boolean) => void; }; type TExternalConfigStore = { config: TConfigOptions; baseConfig: TBaseConfigOptions; setConfig: (config: Partial<TConfigOptions>) => void; setBaseConfig: (config: TBaseConfigOptions) => void; resetConfig: () => void; }; export {};