> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/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 - WebAuthn APIからのエラーオブジェクト。
   * @property {string} error.name - エラーの名前（例：「NotAllowedError」）。
   * @property {string} error.message - 詳細なエラーメッセージ。
   */
  error: {
    name: string;
    message: string;
  };
}
```

<h2 id="properties">
  プロパティ
</h2>

<ParamField body="error" type="object">
  <Expandable title="プロパティ">
    <ParamField body="message" type="string" />

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