Type alias AuthMFAListFactorsResponse

AuthMFAListFactorsResponse: {
    data: {
        all: Factor[];
        phone: Factor[];
        totp: Factor[];
    };
    error: null;
} | {
    data: null;
    error: AuthError;
}

Generated using TypeDoc