Example
export interface ReportBrowserErrorOptions {
/**
* @property {object} error - WebAuthn APIからのエラーオブジェクト。
* @property {string} error.name - エラーの名前(例:「NotAllowedError」)。
* @property {string} error.message - 詳細なエラーメッセージ。
*/
error: {
name: string;
message: string;
};
}