mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
Merge from master
This commit is contained in:
21
src/sql/sqlops.d.ts
vendored
21
src/sql/sqlops.d.ts
vendored
@@ -234,20 +234,20 @@ declare module 'sqlops' {
|
||||
}
|
||||
|
||||
/**
|
||||
* Options for the actions that could happen after connecting is complete
|
||||
*/
|
||||
* Options for the actions that could happen after connecting is complete
|
||||
*/
|
||||
export interface IConnectionCompletionOptions {
|
||||
/**
|
||||
* Save the connection to MRU and settings (only save to setting if profile.saveProfile is set to true)
|
||||
* Default is true.
|
||||
*/
|
||||
*/
|
||||
saveConnection: boolean;
|
||||
|
||||
/**
|
||||
* If true, open the dashboard after connection is complete.
|
||||
* If undefined / false, dashboard won't be opened after connection completes.
|
||||
* Default is false.
|
||||
*/
|
||||
*/
|
||||
showDashboard?: boolean;
|
||||
|
||||
/**
|
||||
@@ -1032,6 +1032,14 @@ declare module 'sqlops' {
|
||||
* will be used instead.
|
||||
*/
|
||||
iconType?: string | SqlThemeIcon;
|
||||
/**
|
||||
* Informs who provides the children to a node, used by data explorer tree view api
|
||||
*/
|
||||
childProvider?: string;
|
||||
/**
|
||||
* Holds the connection profile for nodes, used by data explorer tree view api
|
||||
*/
|
||||
payload?: any;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -2367,6 +2375,11 @@ declare module 'sqlops' {
|
||||
serverInfo: ServerInfo;
|
||||
}
|
||||
|
||||
export class TreeItem extends vscode.TreeItem {
|
||||
payload?: IConnectionProfile;
|
||||
childProvider?: string;
|
||||
}
|
||||
|
||||
export namespace tasks {
|
||||
|
||||
export interface ITaskHandler {
|
||||
|
||||
Reference in New Issue
Block a user