mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
Fix #89610
This commit is contained in:
@@ -49,8 +49,8 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
|
||||
return this.channel.call('sync');
|
||||
}
|
||||
|
||||
resolveConflictsAndContinueSync(content: string, remote: boolean): Promise<void> {
|
||||
return this.channel.call('resolveConflictsAndContinueSync', [content, remote]);
|
||||
accept(source: SyncSource, content: string): Promise<void> {
|
||||
return this.channel.call('accept', [source, content]);
|
||||
}
|
||||
|
||||
reset(): Promise<void> {
|
||||
@@ -82,8 +82,8 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
|
||||
return this.channel.call('hasLocalData');
|
||||
}
|
||||
|
||||
getRemoteContent(source: SyncSource): Promise<string | null> {
|
||||
return this.channel.call('getRemoteContent', [source]);
|
||||
getRemoteContent(source: SyncSource, preview: boolean): Promise<string | null> {
|
||||
return this.channel.call('getRemoteContent', [source, preview]);
|
||||
}
|
||||
|
||||
isFirstTimeSyncAndHasUserData(): Promise<boolean> {
|
||||
|
||||
Reference in New Issue
Block a user