mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 02:48:30 -05:00
Merge from vscode 892353d48e17303de203bb5071f21ea69573367d
This commit is contained in:
@@ -148,10 +148,14 @@ interface IWindowIndicator {
|
||||
}
|
||||
|
||||
interface IInitialColorTheme {
|
||||
|
||||
/**
|
||||
* Initial color theme type.
|
||||
*/
|
||||
themeType: 'light' | 'dark' | 'hc';
|
||||
|
||||
/**
|
||||
* a list of workbench colors
|
||||
* A list of workbench colors to apply initially.
|
||||
*/
|
||||
colors?: { [colorId: string]: string };
|
||||
}
|
||||
@@ -241,6 +245,8 @@ interface IWorkbenchConstructionOptions {
|
||||
|
||||
/**
|
||||
* Session id of the current authenticated user
|
||||
*
|
||||
* @deprecated Instead pass current authenticated user info through [credentialsProvider](#credentialsProvider)
|
||||
*/
|
||||
readonly authenticationSessionId?: string;
|
||||
|
||||
@@ -293,7 +299,9 @@ interface IWorkbenchConstructionOptions {
|
||||
userDataProvider?: IFileSystemProvider;
|
||||
|
||||
/**
|
||||
* Enables user data sync by default and syncs into the current authenticated user account using the provided [authenticationSessionId}(#authenticationSessionId).
|
||||
* Enables Settings Sync by default.
|
||||
*
|
||||
* Syncs with the current authenticated user account (provided in [credentialsProvider](#credentialsProvider)) by default.
|
||||
*/
|
||||
readonly enableSyncByDefault?: boolean;
|
||||
|
||||
@@ -554,6 +562,7 @@ export {
|
||||
IHomeIndicator,
|
||||
IProductConfiguration,
|
||||
IWindowIndicator,
|
||||
IInitialColorTheme,
|
||||
|
||||
// Default layout
|
||||
IDefaultView,
|
||||
|
||||
Reference in New Issue
Block a user