Result of sync change calculation.
export interface SyncChangesResult { statusWillChange: boolean; progressWillChange: boolean; scoreWillChange: boolean; isNewEntry: boolean; isCompleted: boolean; changeCount: number;} Copy
export interface SyncChangesResult { statusWillChange: boolean; progressWillChange: boolean; scoreWillChange: boolean; isNewEntry: boolean; isCompleted: boolean; changeCount: number;}
Whether status will change.
Whether progress will change.
Whether score will change.
Whether entry is new to the library.
Whether entry is completed and preserved.
Total number of fields that will change.
Result of sync change calculation.
Source