Stop exposing Syncer from SyncClient

This commit is contained in:
Andras Schmelczer 2025-03-22 13:48:01 +00:00
parent 93b43f57b7
commit 2722f7c7fc
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
11 changed files with 84 additions and 55 deletions

View file

@ -1,19 +1,15 @@
export {
SyncHistory,
SyncType,
SyncSource,
SyncStatus,
type HistoryStats,
type HistoryEntry
} from "./tracing/sync-history";
export { Logger, LogLevel, LogLine } from "./tracing/logger";
export { SyncClient } from "./sync-client";
export { Syncer } from "./sync-operations/syncer";
export type { CheckConnectionResult } from "./services/sync-service";
export { Settings, type SyncSettings } from "./persistence/settings";
export { type SyncSettings } from "./persistence/settings";
export type { RelativePath } from "./persistence/database";
export type { FileSystemOperations } from "./file-operations/filesystem-operations";
export type { PersistenceProvider } from "./persistence/persistence";
export { SyncClient } from "./sync-client";