AuthError interface

Auth錯誤的介面。

簽名:

export interface AuthError extends FirebaseError 

擴充: FirebaseError

特性

財產類型描述
自訂數據{ 唯讀應用程式名稱:字串;只讀電子郵件?:字串;只讀電話號碼?:字串;只讀tenantId?:字串; }有關 Firebase 身份驗證錯誤的詳細資訊。

AuthError.customData

有關 Firebase 身份驗證錯誤的詳細資訊。

簽名:

readonly customData: {
        readonly appName: string;
        readonly email?: string;
        readonly phoneNumber?: string;
        readonly tenantId?: string;
    };