UNPKG

@privateid/ultra-web-sdk-alpha

Version:
11 lines (10 loc) 551 B
import { EnrollProps, EstimateAgeProps, FaceLoginProps, PredictProps } from './face.types'; export interface Face { faceLogin: (props: FaceLoginProps) => Promise<unknown>; predict: (props: PredictProps) => Promise<unknown>; predictWithStatus: (props: PredictProps) => Promise<unknown>; predictConfirmUser: (props: PredictProps) => Promise<unknown>; predictDeleteUser: (props: PredictProps) => Promise<unknown>; estimateAge: (props: EstimateAgeProps) => Promise<unknown>; enroll: (props: EnrollProps) => Promise<unknown>; }