@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
20 lines (17 loc) • 588 B
text/typescript
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
import { Authenticator } from '../../localData/Authenticator';
/**
* The object describing the user verification (i.e. the user credential validation) operation to be
* done.
*
* This object contains the information required to ask the user to authenticate: the authenticator
* to be used, whether there were previous errors authenticating, etc.
*/
export abstract class UserVerificationContext {
/**
* The authenticator to be used to do the user verification.
*/
abstract authenticator: Authenticator;
}