mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
Fix #89707
This commit is contained in:
@@ -49,8 +49,8 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
|
||||
return this.channel.call('sync');
|
||||
}
|
||||
|
||||
resolveConflictsAndContinueSync(content: string): Promise<void> {
|
||||
return this.channel.call('resolveConflictsAndContinueSync', [content]);
|
||||
resolveConflictsAndContinueSync(content: string, remote: boolean): Promise<void> {
|
||||
return this.channel.call('resolveConflictsAndContinueSync', [content, remote]);
|
||||
}
|
||||
|
||||
reset(): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user