Skip to main content
ScreenMembersOnMfaWebAuthnError
Example
export interface ScreenMembersOnMfaWebAuthnError extends ScreenMembers {
  /**
   * @property {object | null} data - WebAuthn エラーの詳細を示す画面固有のデータ。
   * @property {string} data.errorType - WebAuthn エラーの性質を示す文字列のコードまたはメッセージ
   * (例: "NotAllowedError", "TimeoutError", "InvalidStateError")。
   * @property {WebAuthnType} data.webauthnType - エラーが 'webauthn-roaming' または
   * 'webauthn-platform' の認証器で発生したかを示します。
   */
  data: {
    /**
     * WebAuthn エラーを説明するコードまたはメッセージ。
     */
    errorType: string;
    /**
     * 関係する WebAuthn 認証器の種類。
     */
    webauthnType: WebAuthnType;
  } | null;
}

プロパティ

captchaImage
string
captchaProvider
string
captchaSiteKey
string

型宣言

{ errorType: string; webauthnType: WebAuthnType; }

errorType

WebAuthn エラーを示すコードまたはメッセージ。

webauthnType

対象の WebAuthn 認証器の種類。null
isCaptchaAvailable
boolean
name
string
texts
Record