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

Détails d’une erreur WebAuthn du navigateur.

```ts Example theme={null}
export interface WebAuthnErrorDetails {
  /**
   * Le nom de l'erreur (p. ex., « NotAllowedError »).
   */
  name: string;
  /**
   * Le message d'erreur.
   */
  message: string;
  /**
   * Toutes les propriétés d'erreur supplémentaires.
   */
  [key: string]: string | number | boolean | undefined;
}
```

<div id="indexable">
  ## Indexable
</div>

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

Toute autre propriété d’erreur.

<div id="properties">
  ## Propriétés
</div>

<ParamField body="message" type="string">
  Le message d’erreur.
</ParamField>

<ParamField body="name" type="string">
  Le nom de l’erreur (p. ex., « NotAllowedError »).
</ParamField>
