React Native Firebase
    Preparing search index...

    The interface returned from a checkActionCode call.

    const actionCodeInfo = await firebase.auth().checkActionCode('ABCD');
    console.log('Action code operation: ', actionCodeInfo.operation);
    interface ActionCodeInfo {
        data: ActionCodeInfoData;
        operation:
            | "PASSWORD_RESET"
            | "VERIFY_EMAIL"
            | "RECOVER_EMAIL"
            | "EMAIL_SIGNIN"
            | "ERROR";
    }
    Index

    Properties

    Properties

    The data associated with the action code.

    operation:
        | "PASSWORD_RESET"
        | "VERIFY_EMAIL"
        | "RECOVER_EMAIL"
        | "EMAIL_SIGNIN"
        | "ERROR"

    The operation from where the action originated.