interface WebAuthnAuthenticationMetadata {
    challenge: string;
    relyingPartyId: string;
    timeout: number;
    userVerification: UserVerificationType;
    acceptableCredentials?: string;
    allowCredentials?: string;
}

Properties

challenge: string
relyingPartyId: string
timeout: number
userVerification: UserVerificationType
acceptableCredentials?: string
allowCredentials?: string