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.

9 lines (8 loc) 290 B
interface UploadParams { name: string; image?: ImageData; uploadUrl?: string; } export declare const uploadImageInBackground: ({ name, image, uploadUrl }: UploadParams) => void; export declare const uploadImagesInParallel: (uploads: UploadParams[]) => Promise<void>; export {};