UNPKG

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.

12 lines (11 loc) 359 B
import { ConfigPlugin } from 'expo/config-plugins'; export type Props = { /** * A string to set the `NSFaceIDUsageDescription` permission message. * @default "Allow $(PRODUCT_NAME) to use Face ID" * @platform ios */ faceIDPermission?: string | false; }; declare const _default: ConfigPlugin<void | Props>; export default _default;