1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-01 16:13:27 +00:00
Files
browser/src/abstractions/sync.service.ts
2018-01-09 23:25:59 -05:00

10 lines
206 B
TypeScript

export interface SyncService {
syncInProgress: boolean;
getLastSync();
setLastSync(date: Date);
syncStarted();
syncCompleted(successfully: boolean);
fullSync(forceSync: boolean);
}