React Native Firebase
    Preparing search index...
    interface AuthError {
        code: string;
        customData: {
            appName: string;
            email?: string;
            phoneNumber?: string;
            tenantId?: string;
        };
        message: string;
        namespace: string;
        nativeErrorCode: string
        | number;
        nativeErrorMessage: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    code: string

    Firebase error code, e.g. auth/invalid-email

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

    Firebase error message

    namespace: string

    The firebase module namespace that this error originated from, e.g. 'analytics'

    nativeErrorCode: string | number

    The native sdks returned error code, different per platform

    nativeErrorMessage: string

    The native sdks returned error message, different per platform