fix compilation

This commit is contained in:
Sandeep Somavarapu
2019-09-25 20:46:00 +02:00
parent 6031150a95
commit d483a316ef
2 changed files with 5 additions and 0 deletions

View File

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