28 lines
506 B
TypeScript
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";
|