Details of a WebAuthn browser error.
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
The name of the error (e.g., “NotAllowedError”).