mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
data workspace review feedback implementation (#12489)
* add a view to handle no workspace scenario * text update * project type filter improvement * fix the project level context menu issue * update strings
This commit is contained in:
15
extensions/data-workspace/src/dataworkspace.d.ts
vendored
15
extensions/data-workspace/src/dataworkspace.d.ts
vendored
@@ -62,4 +62,19 @@ declare module 'dataworkspace' {
|
||||
*/
|
||||
readonly icon: string | vscode.Uri | { light: string | vscode.Uri, dark: string | vscode.Uri }
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents the item for the workspace tree
|
||||
*/
|
||||
export interface WorkspaceTreeItem {
|
||||
/**
|
||||
* Gets the tree data provider
|
||||
*/
|
||||
treeDataProvider: vscode.TreeDataProvider<any>;
|
||||
|
||||
/**
|
||||
* Gets the raw element returned by the tree data provider
|
||||
*/
|
||||
element: any;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user