Skip to main content
Details of a WebAuthn browser error.
Example
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

message
string
The error message.
name
string
The name of the error (e.g., “NotAllowedError”).