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

# ResetPasswordMfaWebAuthnPlatformChallengeReportErrorOptions

ReportBrowserErrorOptions

```ts Example theme={null}
export interface ReportBrowserErrorOptions {
  /**
   * El objeto de error de la API de WebAuthn. Normalmente es un `DOMException`.
   * El SDK espera un objeto con al menos las propiedades `name` y `message`.
   * @type {WebAuthnErrorDetails}
   * @example { name: "NotAllowedError", message: "The operation was cancelled by the user." }
   */
  error: WebAuthnErrorDetails;
}
```

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

<ParamField body="error" type={<span><a href="/es/docs/libraries/acul/js-sdk/Screens/interfaces/WebAuthnErrorDetails">WebAuthnErrorDetails</a></span>}>
  El objeto de error de la API de WebAuthn (`navigator.credentials.get()`)
  que se debe informar. Debe incluir `name` y `message`.
</ParamField>
