Files
moreminimore-redesign/packages/auth/src/passkey/index.ts
2026-04-01 10:44:22 +01:00

28 lines
506 B
TypeScript

/**
* Passkey authentication module
*/
export type {
RegistrationOptions,
RegistrationResponse,
VerifiedRegistration,
AuthenticationOptions,
AuthenticationResponse,
VerifiedAuthentication,
ChallengeStore,
ChallengeData,
PasskeyConfig,
} from "./types.js";
export {
generateRegistrationOptions,
verifyRegistrationResponse,
registerPasskey,
} from "./register.js";
export {
generateAuthenticationOptions,
verifyAuthenticationResponse,
authenticateWithPasskey,
} from "./authenticate.js";