@j2blasco/ts-auth
Version:
TypeScript authentication abstraction library that eliminates vendor lock-in and provides mock-free testing for both frontend and backend authentication systems
7 lines (6 loc) • 444 B
JavaScript
export * from './frontend/core/auth-frontend.interface';
export { testAuthFrontend } from './frontend/core/auth-frontend.generic.test';
export { AuthFrontendTesting } from './frontend/providers/testing/auth-frontend.testing';
export * from './backend/core/auth-backend.interface';
export { testAuthBackend } from './backend/core/auth-backend.generic.test';
export { AuthBackendTesting } from './backend/providers/testing/auth-backend.testing';