expo-local-authentication
Version:
Provides an API for FaceID and TouchID (iOS) or the Fingerprint API (Android) to authenticate the user with a face or fingerprint scan.
16 lines • 407 B
JavaScript
import { SecurityLevel } from './LocalAuthentication.types';
export default {
async hasHardwareAsync() {
return false;
},
async isEnrolledAsync() {
return false;
},
async getEnrolledLevelAsync() {
return SecurityLevel.NONE;
},
async supportedAuthenticationTypesAsync() {
return [];
},
};
//# sourceMappingURL=ExpoLocalAuthentication.web.js.map