Skip to main content

Documentation Index

Fetch the complete documentation index at: https://auth0-feat-ionic-capacitor-quickstart-modernization.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Interface describing the members of the Mfa Recovery Code Enrollment screen.
Example
export interface MfaRecoveryCodeEnrollmentMembers extends BaseMembers {
  screen: ScreenMembersOnMfaRecoveryCodeEnrollment;

  /**
   * Declares that the user saved the recovery code.
   * This action is triggered when the user declares that they have saved the recovery code.
   * It redirects to the next screen in the authentication flow.
   *
   * @param {object} payload - An object containing any custom options.
   *
   * @returns {Promise<void>} A promise that resolves when the action is successfully submitted.
   * Rejects with an error if the submission fails.
   */
  continue(payload: MfaRecoveryCodeEnrollmentContinueOptions): Promise<void>;
}

Properties

Methods

continue
Promise<void>
Declares that the user saved the recovery code. This action is triggered when the user declares that they have saved the recovery code. It redirects to the next screen in the authentication flow.A promise that resolves when the action is successfully submitted. Rejects with an error if the submission fails.