UNPKG

onfido-sdk-ui

Version:

JavaScript SDK view layer for Onfido identity verification

19 lines (18 loc) 518 B
import type { Empty } from './Common'; export type FaceVideoModuleConfiguration = { showIntro?: boolean; showConfirmation?: boolean; }; type FaceVideoModuleVariant = 'video'; export type FaceVideoModuleInput = Empty; export type FaceVideoModuleOutput = { id: string; variant: FaceVideoModuleVariant; }; export type FaceVideoFeatureFlags = { sign_upload?: boolean; passive_signals_on_upload?: boolean; webm_mime_type_preference: string[]; photo_capture_fallback?: boolean; }; export {};