#93960 Ability to downlod and replace from cloud

This commit is contained in:
Sandeep Somavarapu
2020-05-12 15:38:13 +02:00
parent 645f585014
commit 26cbe9d953
13 changed files with 178 additions and 25 deletions

View File

@@ -77,6 +77,10 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
return this.channel.call('stop');
}
replace(uri: URI): Promise<void> {
return this.channel.call('replace', [uri]);
}
reset(): Promise<void> {
return this.channel.call('reset');
}