#85216 More improvements to start up ux

This commit is contained in:
Sandeep Somavarapu
2020-01-16 16:25:45 +01:00
parent 1ba18afb07
commit 4f7f8587d1
11 changed files with 169 additions and 46 deletions

View File

@@ -69,8 +69,12 @@ export class SettingsSyncService extends Disposable implements ISettingsSyncServ
return this.channel.call('hasPreviouslySynced');
}
hasRemote(): Promise<boolean> {
return this.channel.call('hasRemote');
hasRemoteData(): Promise<boolean> {
return this.channel.call('hasRemoteData');
}
hasLocalData(): Promise<boolean> {
return this.channel.call('hasLocalData');
}
resolveConflicts(conflicts: { key: string, value: any | undefined }[]): Promise<void> {

View File

@@ -66,8 +66,16 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
return this.channel.call('hasPreviouslySynced');
}
hasRemote(): Promise<boolean> {
return this.channel.call('hasRemote');
hasRemoteData(): Promise<boolean> {
return this.channel.call('hasRemoteData');
}
hasLocalData(): Promise<boolean> {
return this.channel.call('hasLocalData');
}
isFirstTimeSyncAndHasUserData(): Promise<boolean> {
return this.channel.call('isFirstTimeSyncAndHasUserData');
}
removeExtension(identifier: IExtensionIdentifier): Promise<void> {