UNPKG

expo-passkey

Version:

Passkey authentication for Expo apps with Better Auth integration

13 lines 732 B
/** * @file Native/mobile entry point for Expo Passkey client * @description Client-side exports for Expo Passkey authentication * @module expo-passkey */ import ExpoPasskeyModule from "./ExpoPasskeyModule"; export default ExpoPasskeyModule; export * from "./ExpoPasskeyModule.types"; export { ERROR_CODES, PasskeyError } from "./types/errors"; export { expoPasskeyClient } from "./client/index.native"; export type { BiometricSupportInfo, DeviceInfo, PasskeyPlatform, PasskeyMetadata, PasskeyState, AuthOptions, WebAuthnSupportInfo, } from "./types/passkey"; export type { AuthenticatorAttachment, UserVerificationRequirement, PublicKeyCredentialDescriptor, } from "./types/webauthn"; //# sourceMappingURL=index.native.d.ts.map