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

# WebAuthnErrorDetails

WebAuthnブラウザーエラーの詳細。

```ts Example theme={null}
export interface WebAuthnErrorDetails {
  /**
   * エラーの名前（例：「NotAllowedError」）。
   */
  name: string;
  /**
   * エラーメッセージ。
   */
  message: string;
  /**
   * 追加のエラープロパティ。
   */
  [key: string]: string | number | boolean | undefined;
}
```

<h2 id="indexable">
  インデックス可能
</h2>

\[`key`: `string`]: `string` | `number` | `boolean` | `undefined`

その他のエラープロパティ。

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

<ParamField body="message" type="string">
  エラー メッセージ。
</ParamField>

<ParamField body="name" type="string">
  エラー名 (例: "NotAllowedError") 。
</ParamField>
