mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
#85216 More improvements to start up ux
This commit is contained in:
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user