> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# WebAuthnErrorDetails

Details of a WebAuthn browser error.

```ts Example theme={null}
export interface WebAuthnErrorDetails {
  /**
   * The name of the error (e.g., "NotAllowedError").
   */
  name: string;
  /**
   * The error message.
   */
  message: string;
  /**
   * Any additional error properties.
   */
  [key: string]: string | number | boolean | undefined;
}
```

## Indexable

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

Any additional error properties.

## Properties

<ParamField body="message" type="string">
  The error message.
</ParamField>

<ParamField body="name" type="string">
  The name of the error (e.g., "NotAllowedError").
</ParamField>
