Reports module: - types/reports.types.ts: Complete type definitions for definitions, executions, schedules - api/reports.api.ts: API clients for all report operations - hooks/useReports.ts: Custom hooks (useReportDefinitions, useReportExecutions, etc.) - ReportsPage.tsx: Main reports management with tabs - QuickReportsPage.tsx: Trial Balance and General Ledger quick reports Settings module: - types/settings.types.ts: Types for company, users, profile, audit logs - api/settings.api.ts: API clients for settings operations - hooks/useSettings.ts: Custom hooks (useCompany, useUsers, useProfile, etc.) - SettingsPage.tsx: Settings hub with navigation cards - UsersSettingsPage.tsx: User management page Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
137 B
TypeScript
11 lines
137 B
TypeScript
// Settings Feature - Barrel Export
|
|
|
|
// Types
|
|
export * from './types';
|
|
|
|
// API
|
|
export * from './api';
|
|
|
|
// Hooks
|
|
export * from './hooks';
|