mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
10 lines
290 B
TypeScript
10 lines
290 B
TypeScript
export abstract class SyncService {
|
|
syncInProgress: boolean;
|
|
|
|
getLastSync: () => Promise<Date>;
|
|
setLastSync: (date: Date) => Promise<any>;
|
|
syncStarted: () => void;
|
|
syncCompleted: (successfully: boolean) => void;
|
|
fullSync: (forceSync: boolean) => Promise<boolean>;
|
|
}
|