@auth0/nextjs-auth0 - v4.15.0
    Preparing search index...

    Variable mfaConst

    mfa: MfaClient = ...

    Client-side MFA API singleton.

    import { mfa } from '@auth0/nextjs-auth0/client';

    // List authenticators
    const authenticators = await mfa.getAuthenticators({ mfaToken });

    // Initiate challenge
    const challenge = await mfa.challenge({ mfaToken, challengeType: 'oob' });

    // Verify and complete
    const tokens = await mfa.verify({ mfaToken, otp: '123456' });