Splits the large `src/utils/sync/data.ts` file into smaller, more manageable modules to improve code organization, readability, and maintainability.
18 lines
320 B
TypeScript
18 lines
320 B
TypeScript
|
|
/**
|
|
* 동기화 코어 모듈
|
|
*/
|
|
|
|
// 타입 정의 내보내기
|
|
export * from './types';
|
|
|
|
// 백업 및 복구 기능 내보내기
|
|
export * from './backup';
|
|
export * from './recovery';
|
|
|
|
// 상태 확인 기능 내보내기
|
|
export * from './status';
|
|
|
|
// 동기화 작업 내보내기
|
|
export * from './syncOperations';
|