nostr-biometric-auth-utils
Version:
A utility library for biometric authentication in Nostr applications using WebAuthn.
13 lines (12 loc) • 356 B
JavaScript
/**
* @module nostr-biometric-login-service
* @description Main entry point for the nostr-biometric-login-service package
*/
// Export client-side implementation
export * from './client';
// Export server-side implementation
export * from './server';
// Export type definitions
export * from './types/auth';
// Export utilities
export * from './utils';