1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/abstractions/sync.service.ts

10 lines
206 B
TypeScript
Raw Normal View History

2018-01-10 05:25:59 +01:00
export interface SyncService {
syncInProgress: boolean;
getLastSync();
setLastSync(date: Date);
syncStarted();
syncCompleted(successfully: boolean);
fullSync(forceSync: boolean);
}