From 6bd01bb2f156ae29c9305de4048105c9632b6d75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Rejdak?= Date: Mon, 30 Mar 2026 21:26:55 +0200 Subject: [PATCH] chore: update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 65b2c73..c3ce0c6 100644 --- a/README.md +++ b/README.md @@ -745,7 +745,7 @@ const isSensorAvailable = (): Promise => { type SensorInfo = { available: boolean; // Whether biometric auth is available biometryType?: string; // Type of biometry ('FaceID', 'TouchID', 'Fingerprint', etc.) - isDeviceSecure?: boolean; // Whether the device has a passcode/PIN/password set + isDeviceSecure: boolean; // Whether the device has a passcode/PIN/password set error?: string; // Error message if not available errorCode?: string; // Error code if not available (platform-specific) }