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

Detalles de un error del navegador relacionado con WebAuthn.

```ts Example theme={null}
export interface WebAuthnErrorDetails {
  /**
   * El nombre del error (p. ej., "NotAllowedError").
   */
  name: string;
  /**
   * El mensaje de error.
   */
  message: string;
  /**
   * Cualquier propiedad de error adicional.
   */
  [key: string]: string | number | boolean | undefined;
}
```

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

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

Cualquier otra propiedad de error.

<div id="properties">
  ## Propiedades
</div>

<ParamField body="message" type="string">
  El mensaje de error.
</ParamField>

<ParamField body="name" type="string">
  El nombre del error (por ejemplo, «NotAllowedError»).
</ParamField>
