> ## 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

ReportBrowserErrorOptions

```ts Example theme={null}
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

<ParamField body="error" type="object">
  <Expandable title="properties">
    <ParamField body="message" type="string" />

    <ParamField body="name" type="string" />
  </Expandable>
</ParamField>
