budget-view-finance/src/services/transacaoService.ts
gpt-engineer-app[bot] 049acd069e Refactor: Split transacaoService.ts into smaller files
Refactors transacaoService.ts into smaller, more manageable files to improve code organization and maintainability.
2025-05-21 10:49:36 +00:00

12 lines
246 B
TypeScript

// This file is now just a facade that re-exports from the modular services
export {
getTransacoes,
getTransactionSummary,
getCategorySummary,
getMonthlyData,
deleteTransacao,
updateTransacao,
formatCurrency
} from './transacao';