Skip to main content

Documentation Index

Fetch the complete documentation index at: https://auth0.com/llms.txt

Use this file to discover all available pages before exploring further.

ReportBrowserErrorOptions
Example
export interface ReportBrowserErrorOptions {
  /**
   * @property {object} error - The error object from the WebAuthn API.
   * @property {string} error.name - The name of the error (e.g., "NotAllowedError").
   * @property {string} error.message - The detailed error message.
   */
  error: {
    name: string;
    message: string;
  };
}

Properties

error
object