Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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; }
errorType
string
webauthnType
WebAuthnType
null