1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-07 19:13:15 +00:00
Files
jslib/src/abstractions/sync.service.ts
2018-08-21 08:20:43 -04:00

17 lines
687 B
TypeScript

import {
SyncCipherNotification,
SyncFolderNotification,
} from '../models/response/notificationResponse';
export abstract class SyncService {
syncInProgress: boolean;
getLastSync: () => Promise<Date>;
setLastSync: (date: Date) => Promise<any>;
fullSync: (forceSync: boolean) => Promise<boolean>;
syncUpsertFolder: (notification: SyncFolderNotification, isEdit: boolean) => Promise<boolean>;
syncDeleteFolder: (notification: SyncFolderNotification) => Promise<boolean>;
syncUpsertCipher: (notification: SyncCipherNotification, isEdit: boolean) => Promise<boolean>;
syncDeleteCipher: (notification: SyncFolderNotification) => Promise<boolean>;
}