> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev.mintlify.site/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 - L'objet d'erreur provenant de la WebAuthn API.
   * @property {string} error.name - Le nom de l'erreur (p. ex., « NotAllowedError »).
   * @property {string} error.message - Le message d'erreur détaillé.
   */
  error: {
    name: string;
    message: string;
  };
}
```

<h2 id="properties">
  Propriétés
</h2>

<ParamField body="error" type="object">
  <Expandable title="propriétés">
    <ParamField body="message" type="string" />

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