Files
zellyy-finance/src/utils/sync/transaction/index.ts
gpt-engineer-app[bot] 74e7ea19fd Refactor transaction sync module
Refactors the transaction sync module for better organization.
2025-03-16 10:05:06 +00:00

11 lines
277 B
TypeScript

import { uploadTransactions } from './uploadTransaction';
import { downloadTransactions } from './downloadTransaction';
import { deleteTransactionFromServer } from './deleteTransaction';
export {
uploadTransactions,
downloadTransactions,
deleteTransactionFromServer
};