mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 01:25:38 -05:00
Add telemetry for ModelView wizards (#12596)
* Add telemetry for ModelView wizards * Remove unnecessary params * Fix compile error
This commit is contained in:
7
src/sql/azdata.proposed.d.ts
vendored
7
src/sql/azdata.proposed.d.ts
vendored
@@ -523,6 +523,10 @@ declare module 'azdata' {
|
||||
}
|
||||
|
||||
export interface Wizard {
|
||||
/**
|
||||
* The name used to identify the wizard in telemetry
|
||||
*/
|
||||
name?: string;
|
||||
/**
|
||||
* Width of the wizard
|
||||
*/
|
||||
@@ -542,9 +546,10 @@ declare module 'azdata' {
|
||||
/**
|
||||
* Create a wizard with the given title and width
|
||||
* @param title The title of the wizard
|
||||
* @param name The name used to identify the wizard in telemetry
|
||||
* @param width The width of the wizard, default value is 'narrow'
|
||||
*/
|
||||
export function createWizard(title: string, width?: DialogWidth): Wizard;
|
||||
export function createWizard(title: string, name?: string, width?: DialogWidth): Wizard;
|
||||
}
|
||||
|
||||
export interface DashboardTab extends Tab {
|
||||
|
||||
Reference in New Issue
Block a user