WebAuthn のブラウザーエラーに関する詳細。
export interface WebAuthnErrorDetails {
/**
* エラーの名前(例:「NotAllowedError」)。
*/
name: string;
/**
* エラーメッセージ。
*/
message: string;
/**
* その他のエラープロパティ。
*/
[key: string]: string | number | boolean | undefined;
}
[key: string]: string | number | boolean | undefined
その他のエラープロパティ。
エラーの名前 (例: “NotAllowedError”) 。