UNPKG

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

Version:

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

47 lines (41 loc) 1.3 kB
/** * Copyright © 2023 Nevis Security AG. All rights reserved. */ import { PromptOptions } from './PromptOptions'; /** * Defines the elements of the biometric prompt (title, description and cancel button text). * * @see {@link BiometricUserVerificationHandler.listenForOsCredentials} */ export abstract class BiometricPromptOptions extends PromptOptions { /** * The cancel button text. */ abstract cancelButtonText: string; /** * Default constructor for {@link BiometricPromptOptions}. * * @param title the title to be used to prompt the user. * @param cancelButtonText the cancel button text. * @param description the optional description to be used to prompt the user. * @returns the created {@link BiometricPromptOptions} instance. */ static create( title: string, cancelButtonText: string, description?: string ): BiometricPromptOptions { return new BiometricPromptOptionsImpl(title, cancelButtonText, description); } } export class BiometricPromptOptionsImpl extends BiometricPromptOptions { title: string; description?: string; cancelButtonText: string; constructor(title: string, cancelButtonText: string, description?: string) { super(); this.title = title; this.description = description; this.cancelButtonText = cancelButtonText; } }