This commit is contained in:
Sandeep Somavarapu
2020-01-15 11:05:12 +01:00
parent 7a05051001
commit 5c928dff37
19 changed files with 231 additions and 32 deletions

View File

@@ -50,6 +50,14 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
return this.channel.call('sync', [_continue]);
}
reset(): Promise<void> {
return this.channel.call('reset');
}
resetLocal(): Promise<void> {
return this.channel.call('resetLocal');
}
stop(): void {
this.channel.call('stop');
}