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.07 kB
"use strict"; /** * Copyright © 2023 Nevis Security AG. All rights reserved. */ /** * The object in charge of interacting with the user to do fingerprint authentication. * * It is invoked when the operation uses the fingerprint ({@link Aaid.FINGERPRINT}) authenticator. * * The SDK does not provide implementations of this interface. * The implementation must be done by the user of the SDK if the fingerprint authenticator is required. * * @remarks * - Android: invoked for the legacy Fingerprint authenticator. * - iOS: invoked for the Touch ID authenticator. For Face ID, see {@link BiometricUserVerifier}. * * @group User Interaction * @category Fingerprint * @see * - {@link Registration.fingerprintUserVerifier} * - {@link Authentication.fingerprintUserVerifier} * - {@link AuthCloudApiRegistration.fingerprintUserVerifier} * - {@link OutOfBandRegistration.fingerprintUserVerifier} * - {@link OutOfBandAuthentication.fingerprintUserVerifier} */ export class FingerprintUserVerifier {} //# sourceMappingURL=FingerprintUserVerifier.js.map