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