mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Add ModelViewEditorOpened event (#12597)
* Add ModelViewEditorOpened event * fix * Fix compile
This commit is contained in:
18
src/sql/azdata.proposed.d.ts
vendored
18
src/sql/azdata.proposed.d.ts
vendored
@@ -513,7 +513,13 @@ declare module 'azdata' {
|
||||
selectTab(id: string): void;
|
||||
}
|
||||
|
||||
export function createModelViewDashboard(title: string, options?: ModelViewDashboardOptions): ModelViewDashboard;
|
||||
/**
|
||||
*
|
||||
* @param title The title displayed in the editor tab for the dashboard
|
||||
* @param name The name used to identify this dashboard in telemetry
|
||||
* @param options Options to configure the dashboard
|
||||
*/
|
||||
export function createModelViewDashboard(title: string, name?: string, options?: ModelViewDashboardOptions): ModelViewDashboard;
|
||||
|
||||
export interface Dialog {
|
||||
/**
|
||||
@@ -552,6 +558,16 @@ declare module 'azdata' {
|
||||
export function createWizard(title: string, name?: string, width?: DialogWidth): Wizard;
|
||||
}
|
||||
|
||||
export namespace workspace {
|
||||
/**
|
||||
* Create a new ModelView editor
|
||||
* @param title The title shown in the editor tab
|
||||
* @param options Options to configure the editor
|
||||
* @param name The name used to identify the editor in telemetry
|
||||
*/
|
||||
export function createModelViewEditor(title: string, options?: ModelViewEditorOptions, name?: string,): ModelViewEditor;
|
||||
}
|
||||
|
||||
export interface DashboardTab extends Tab {
|
||||
/**
|
||||
* Toolbar of the tab, optional.
|
||||
|
||||
Reference in New Issue
Block a user