mirror of
https://github.com/bitwarden/browser
synced 2026-01-01 16:13:27 +00:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
export interface SyncService {
|
|
syncInProgress: boolean;
|
|
|
|
getLastSync();
|
|
setLastSync(date: Date);
|
|
syncStarted();
|
|
syncCompleted(successfully: boolean);
|
|
fullSync(forceSync: boolean);
|
|
}
|