UNPKG

@nevis-security/nevis-mobile-authentication-sdk-react

Version:

React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.

29 lines (27 loc) 1.06 kB
"use strict"; /** * Copyright © 2023 Nevis Security AG. All rights reserved. */ /** * The object in charge of interacting with the user to do biometric authentication. * * It is invoked when the operation uses the biometric ({@link Aaid.BIOMETRIC}) authenticator. * * The SDK does not provide implementations of this interface. * The implementation must be done by the user of the SDK if the biometric authenticator is required. * * @remarks * - Android: invoked for the Biometric authenticator (BiometricPrompt-based). * - iOS: invoked for the Face ID authenticator. For Touch ID, see {@link FingerprintUserVerifier}. * * @group User Interaction * @category Biometric * @see * - {@link Registration.biometricUserVerifier} * - {@link Authentication.biometricUserVerifier} * - {@link AuthCloudApiRegistration.biometricUserVerifier} * - {@link OutOfBandRegistration.biometricUserVerifier} * - {@link OutOfBandAuthentication.biometricUserVerifier} */ export class BiometricUserVerifier {} //# sourceMappingURL=BiometricUserVerifier.js.map