/**
 * Copyright © 2023 Nevis Security AG. All rights reserved.
 */

import { CancellableHandler } from '../CancellableHandler';

/**
 * The objects consuming the outcome of an interaction where the user provides credentials.
 *
 * Depending on the type of the authenticator, the credentials must be provided to this object.
 */
export abstract class UserVerificationHandler extends CancellableHandler {}
