Refactors transacaoService.ts into smaller, more manageable files to improve code organization and maintainability.
12 lines
246 B
TypeScript
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';
|