trading-platform-frontend-v2/src/modules/auth/index.ts
rckrdmrd 737303d177 Migración desde trading-platform/apps/frontend - Estándar multi-repo v2
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 08:32:49 -06:00

29 lines
570 B
TypeScript

/**
* Auth Module - Main entry point
*/
// Types
export * from './types';
// Services
export { authApi } from './services/auth.api';
// Stores
export { useAuthStore, useUser, useTenant, useIsAuthenticated, useAuthLoading, useAuthError } from './stores/auth.store';
// Hooks
export {
authKeys,
useLogin,
useRegister,
useLogout,
useRequestPasswordReset,
useResetPassword,
useChangePassword,
useSessions,
useRevokeSession,
} from './hooks/useAuth';
// Pages
export { LoginPage, RegisterPage, ForgotPasswordPage, ResetPasswordPage } from './pages';