Files
zellyy-finance/src/contexts/budget/storageUtils.ts
gpt-engineer-app[bot] 8027a543ac Refactor budget storage utils
Splits the budget storage utils file into smaller, more manageable files for better organization and maintainability.
2025-03-16 06:36:05 +00:00

24 lines
619 B
TypeScript

// 외부 파일로 리팩토링된 모든 스토리지 관련 함수를 통합적으로 내보내는 파일
// 기존 코드는 storage/ 디렉터리로 이동되었습니다.
export {
// 트랜잭션 관련 함수
loadTransactionsFromStorage,
saveTransactionsToStorage,
clearAllTransactions,
// 예산 데이터 관련 함수
loadBudgetDataFromStorage,
saveBudgetDataToStorage,
clearAllBudgetData,
// 카테고리 관련 함수
loadCategoryBudgetsFromStorage,
saveCategoryBudgetsToStorage,
clearAllCategoryBudgets,
// 데이터 초기화 함수
resetAllData
} from './storage';