UNPKG

react-native-malwarelytics

Version:

Malwarelytics for React Native protects your banking or fintech app from a broad range of mobile security threats with an industry-leading mobile threat intelligence solution.

16 lines 629 B
/** Biometry detection data. */ export interface BiometryInfo { /** Status of the biometry config on the device. */ readonly biometricStatus: BiometricStatus; /** Status of the biometry config on the device, raw value obtained from `androidx.biometric.BiometricManager`. */ readonly androidxLibStatus: number; } /** Status of biometry on the device. */ export declare enum BiometricStatus { CONFIGURED = "CONFIGURED", UNKNOWN = "UNKNOWN", UNSUPPORTED = "UNSUPPORTED", CURRENTLY_UNAVAILABLE = "CURRENTLY_UNAVAILABLE", NONE_ENROLLED = "NONE_ENROLLED" } //# sourceMappingURL=BiometryInfo.d.ts.map