avoid unnecessary connections in azure view (#20817)

* avoid unnecessary connections in azure view

* pr comments
This commit is contained in:
Alan Ren
2022-10-12 20:00:09 -07:00
committed by GitHub
parent 51d5f07c77
commit 359e9657c5
3 changed files with 18 additions and 32 deletions

View File

@@ -29,7 +29,11 @@ export interface ITreeItem extends vsITreeItem {
payload?: IConnectionProfile; // its possible we will want this to be more generic
sqlIcon?: string;
type?: NodeType;
nodeInfo?: NodeInfo
nodeInfo?: NodeInfo;
/**
* The Object Explorer session id that the tree item belongs to.
*/
sessionId?: string;
}
export interface ITreeView extends vsITreeView {