mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
#85216 pull and push support in synchronisers
This commit is contained in:
@@ -38,6 +38,14 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
|
||||
});
|
||||
}
|
||||
|
||||
pull(): Promise<void> {
|
||||
return this.channel.call('pull');
|
||||
}
|
||||
|
||||
push(): Promise<void> {
|
||||
return this.channel.call('push');
|
||||
}
|
||||
|
||||
sync(_continue?: boolean): Promise<boolean> {
|
||||
return this.channel.call('sync', [_continue]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user