Support more history entry types

This commit is contained in:
Andras Schmelczer 2025-05-24 18:51:59 +01:00
commit 063d78fad5
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 69 additions and 19 deletions

View file

@ -2,7 +2,12 @@ export {
SyncType,
SyncStatus,
type HistoryStats,
type HistoryEntry
type HistoryEntry,
type SyncDetails,
type SyncCreateDetails,
type SyncUpdateDetails,
type SyncMovedDetails,
type SyncDeleteDetails
} from "./tracing/sync-history";
export { Logger, LogLevel, LogLine } from "./tracing/logger";
export { type SyncSettings, DEFAULT_SETTINGS } from "./persistence/settings";