@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.
14 lines (13 loc) • 380 B
TypeScript
import { TDefaultResponse } from '../../../shared/types/core/TDefaultResponse';
export declare class UploadPoaDocumentToBucket {
private response;
private url;
private file;
private filename;
constructor({ url, file }: {
url: string;
file: File;
});
putDocumentToBucket(): Promise<void>;
getResponse(): Promise<TDefaultResponse>;
}