Represents the set of actions available for synchronization.
interface SynchronizationActions { startSync: ( entries: AniListMediaEntry[], token: string, _?: undefined, displayOrderMediaIds?: number[], ) => Promise<void>; cancelSync: () => void; exportErrors: () => void; exportReport: () => void; reset: () => void;} Copy
interface SynchronizationActions { startSync: ( entries: AniListMediaEntry[], token: string, _?: undefined, displayOrderMediaIds?: number[], ) => Promise<void>; cancelSync: () => void; exportErrors: () => void; exportReport: () => void; reset: () => void;}
Starts the synchronization process.
Cancels the ongoing synchronization.
Exports the error log from the last sync.
Exports the full sync report.
Resets the synchronization state.
Represents the set of actions available for synchronization.
Source