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

インデックス指定可能

[key: string]: string | number | boolean | undefined その他のエラープロパティ。

プロパティ

message
string
エラー メッセージ。
name
string
エラーの名前 (例: “NotAllowedError”) 。