> ## Documentation Index
> Fetch the complete documentation index at: https://translations.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;
}
```

<div id="indexable">
  ## インデックス指定可能
</div>

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

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

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

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

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