Skip to main content
ScreenMembersOnMfaWebAuthnError
Example
export interface ScreenMembersOnMfaWebAuthnError extends ScreenMembers {
  /**
   * @property {object | null} data - Screen-specific data detailing the WebAuthn error.
   * @property {string} data.errorType - A string code or message describing the nature of the WebAuthn error
   * (e.g., "NotAllowedError", "TimeoutError", "InvalidStateError").
   * @property {WebAuthnType} data.webauthnType - Indicates whether the error occurred with a 'webauthn-roaming'
   * or 'webauthn-platform' authenticator.
   */
  data: {
    /**
     * A code or message describing the WebAuthn error.
     */
    errorType: string;
    /**
     * The type of WebAuthn authenticator involved.
     */
    webauthnType: WebAuthnType;
  } | null;
}

Properties

captcha
captchaImage
string
captchaProvider
string
captchaSiteKey
string
data

Type Declaration

{ errorType: string; webauthnType: WebAuthnType; }

errorType

A code or message describing the WebAuthn error.

webauthnType

The type of WebAuthn authenticator involved.null
isCaptchaAvailable
boolean
name
string
texts
Record