Documentation Index
Fetch the complete documentation index at: https://auth0-feat-ionic-capacitor-quickstart-modernization.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
ScreenMembersOnMfaWebAuthnError
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
Type Declaration
{ errorType: string; webauthnType: WebAuthnType; }errorType
A code or message describing the WebAuthn error.webauthnType
The type of WebAuthn authenticator involved.null