UNPKG

rn-biometric-tracker

Version:

rn-biometric-tracker is a lightweight React Native library used to track biometric changes on the device. It enables you to detect when a user adds or removes biometric data (like fingerprint or face unlock) after tracking is enabled.

12 lines 503 B
declare function enableBiometric(): Promise<object>; declare function disableBiometric(): Promise<object>; declare function isBiometricEnabled(): Promise<boolean>; declare function isBiometricChanged(): Promise<object>; declare const BioTrack: { enableBiometric: typeof enableBiometric; disableBiometric: typeof disableBiometric; isBiometricEnabled: typeof isBiometricEnabled; isBiometricChanged: typeof isBiometricChanged; }; export default BioTrack; //# sourceMappingURL=index.d.ts.map