mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-09 09:42:34 -05:00
Add doAction API call for ModelView (#10345)
* Add doAction API call for ModelView * cleanup
This commit is contained in:
7
src/sql/azdata.proposed.d.ts
vendored
7
src/sql/azdata.proposed.d.ts
vendored
@@ -217,6 +217,12 @@ declare module 'azdata' {
|
||||
* @param tabs new tabs
|
||||
*/
|
||||
updateTabs(tabs: (Tab | TabGroup)[]): void;
|
||||
|
||||
/**
|
||||
* Selects the tab with the specified id
|
||||
* @param id The id of the tab to select
|
||||
*/
|
||||
selectTab(id: string): void;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -349,6 +355,7 @@ declare module 'azdata' {
|
||||
registerTabs(handler: (view: ModelView) => Thenable<(DashboardTab | DashboardTabGroup)[]>): void;
|
||||
open(): Thenable<void>;
|
||||
updateTabs(tabs: (DashboardTab | DashboardTabGroup)[]): void;
|
||||
selectTab(id: string): void;
|
||||
}
|
||||
|
||||
export function createModelViewDashboard(title: string, options?: ModelViewDashboardOptions): ModelViewDashboard;
|
||||
|
||||
Reference in New Issue
Block a user