Skip to main content
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