onfido-sdk-ui
Version:
JavaScript SDK view layer for Onfido identity verification
17 lines (16 loc) • 425 B
TypeScript
import type { Empty } from './Common';
export type FaceModuleConfiguration = {
showIntro?: boolean;
};
type FaceModuleVariant = 'standard';
export type FaceModuleInput = Empty;
export type FaceModuleOutput = {
id: string;
variant: FaceModuleVariant;
};
export type FaceFeatureFlags = {
sign_upload?: boolean;
passive_signals_on_upload?: boolean;
enable_native_camera_fallback?: boolean;
};
export {};