Synchronization metrics tracking sync performance and status.

export interface SyncStats {
readonly lastSyncTime: string | null;
readonly entriesSynced: number;
readonly failedSyncs: number;
readonly totalSyncs: number;
}
interface SyncStats {
    lastSyncTime: null | string;
    entriesSynced: number;
    failedSyncs: number;
    totalSyncs: number;
}

Properties

lastSyncTime: null | string

ISO timestamp of the most recent sync operation, or null if never synced.

entriesSynced: number

Number of manga entries successfully synced in the last operation.

failedSyncs: number

Number of entries that failed during the last sync operation.

totalSyncs: number

Cumulative count of all sync operations performed.