Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
export interface MfaLoginOptionsMembers extends BaseMembers { screen: ScreenMembersOnMfaLoginOptions; /** * Poursuit le processus de connexion avec le facteur AMF sélectionné * @param payload Les options contenant le facteur sélectionné * @example * ```typescript * const mfaLoginOptions = new MfaLoginOptions(); * await mfaLoginOptions.enroll({ * action: 'push-notification' * }); * ``` */ enroll(payload: LoginEnrollOptions): Promise<void>; /** * Retourne à l'écran précédent dans le flux d'authentification * @param payload Options personnalisées facultatives * @example * ```typescript * const mfaLoginOptions = new MfaLoginOptions(); * await mfaLoginOptions.returnToPrevious(); * ``` */ returnToPrevious(payload?: CustomOptions): Promise<void>; }
const mfaLoginOptions = new MfaLoginOptions(); await mfaLoginOptions.enroll({ action: 'push-notification' });
Show Paramètres
const mfaLoginOptions = new MfaLoginOptions(); await mfaLoginOptions.returnToPrevious();