UNPKG

@ha_tecno/react-native-sdk

Version:

React Native SDK for biometric authentication, liveness detection, and fingerprint recognition

11 lines 1.28 kB
import { configureLibrary } from './auth/config'; import { Camera, type CameraProps } from './components/Camera/Camera'; import { type FocusScoreType } from './processors/focusProcessor'; import { biometricService, type BiometricLoginParams, type BiometricRegisterParams, type BiometricResponse } from './services/biometricService'; import { calibrationService, type BiometricCalibrationParams, type CalibrationResponse, type LivenessCalibrationParams } from './services/calibrationService'; import { cameraService, type DeviceParams, type FocusScoreParams } from './services/cameraService'; import { livenessService, type LifeCertificateParams, type LifeCertificateResponse } from './services/livenessService'; import { userService } from './services/userService'; import { Finger } from './utils/finger'; export { biometricService, calibrationService, Camera, cameraService, configureLibrary, Finger, livenessService, userService, type BiometricCalibrationParams, type BiometricLoginParams, type BiometricRegisterParams, type BiometricResponse, type CalibrationResponse, type CameraProps, type DeviceParams, type FocusScoreParams, type FocusScoreType, type LifeCertificateParams, type LifeCertificateResponse, type LivenessCalibrationParams, }; //# sourceMappingURL=index.d.ts.map