first commit
This commit is contained in:
27
packages/auth/src/passkey/index.ts
Normal file
27
packages/auth/src/passkey/index.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* 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";
|
||||
Reference in New Issue
Block a user