React Native Firebase
    Preparing search index...
    interface TotpMultiFactorGenerator {
        FACTOR_ID: TOTP;
        assertionForEnrollment(
            secret: FirebaseAuthTypes.TotpSecret,
            code: string,
        ): MultiFactorAssertion;
        assertionForSignIn(uid: string, totpSecret: string): MultiFactorAssertion;
        generateSecret(
            session: MultiFactorSession,
            auth: Auth,
        ): Promise<FirebaseAuthTypes.TotpSecret>;
    }
    Index

    Methods

    Properties

    FACTOR_ID: TOTP