React Native Firebase
    Preparing search index...
    interface MultiFactorError {
        code: string;
        customData: Record<string, any> & {
            operationType: "link" | "reauthenticate" | "signIn";
        };
        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: Record<string, any> & {
        operationType: "link" | "reauthenticate" | "signIn";
    }

    Details about the MultiFactorError.

    Type Declaration

    • ReadonlyoperationType: "link" | "reauthenticate" | "signIn"

      The type of operation (sign-in, linking, or re-authentication) that raised the error.

    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