Interface VerificationResult

interface VerificationResult {
    valid: boolean;
    expressionResult: null | boolean;
    deviceKey: null | { x: string; y: string };
    verifyMs: number;
    error?: string;
}

Properties

valid: boolean
expressionResult: null | boolean
deviceKey: null | { x: string; y: string }
verifyMs: number
error?: string