expo-passkey
Version:
Passkey authentication for Expo apps with Better Auth integration
11 lines • 960 B
TypeScript
/**
* @file Web/browser entry point for Expo Passkey client
* @module expo-passkey/client/index.web
*/
export { expoPasskeyClient } from "./client/index.web";
export type { PasskeyMetadata, WebAuthnSupportInfo, PasskeyState, AuthOptions, } from "./types/passkey";
export type { ExpoPasskeyClientOptions, ChallengeResponse, RegisterPasskeySuccessResponse, AuthPasskeySuccessResponse, ListPasskeysSuccessResponse, ChallengeResult, RegisterPasskeyResult, AuthenticatePasskeyResult, ListPasskeysResult, RevokePasskeyResult, PasskeyRegistrationCheckResult, } from "./types/client";
export { ERROR_CODES, PasskeyError } from "./types/errors";
export type { AuthenticatorAttachment, UserVerificationRequirement, PublicKeyCredentialDescriptor, AttestationConveyancePreference, } from "./types/webauthn";
export { isWebAuthnSupportedInBrowser, isPlatformAuthenticatorAvailable, WEB_ERROR_MESSAGES, } from "./client/utils/web";
//# sourceMappingURL=index.web.d.ts.map