expo-passkey
Version:
Passkey authentication for Expo apps with Better Auth integration
20 lines • 720 B
TypeScript
/**
* @file Module loader for Expo dependencies
* @module expo-passkey/client/utils/modules
*/
import { Platform } from "react-native";
import * as Application from "expo-application";
import * as Device from "expo-device";
import * as LocalAuthentication from "expo-local-authentication";
import * as SecureStore from "expo-secure-store";
import * as Crypto from "expo-crypto";
export interface ExpoModules {
Platform: typeof Platform;
Application: typeof Application;
Device: typeof Device;
LocalAuthentication: typeof LocalAuthentication;
SecureStore: typeof SecureStore;
Crypto: typeof Crypto;
}
export declare function loadExpoModules(): ExpoModules;
//# sourceMappingURL=modules.d.ts.map