From b2a9074a2584681752c17f0c880cdea822c94449 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Thu, 22 Jul 2021 15:53:18 -0700 Subject: [PATCH] Fix azdata.d.ts linting issues (#16405) --- src/sql/azdata.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sql/azdata.d.ts b/src/sql/azdata.d.ts index 6fc637e926..6bcabb153b 100644 --- a/src/sql/azdata.d.ts +++ b/src/sql/azdata.d.ts @@ -3888,7 +3888,7 @@ declare module 'azdata' { * @param dialogName Name of the dialog. * @param width Width of the dialog, default is 'narrow'. */ - export function createModelViewDialog(title: string, dialogName?: string | undefined, width?: DialogWidth | undefined): Dialog; + export function createModelViewDialog(title: string, dialogName?: string, width?: DialogWidth): Dialog; /** * Create a dialog tab which can be included as part of the content of a dialog @@ -3900,7 +3900,7 @@ declare module 'azdata' { * Create a button which can be included in a dialog * @param label The label of the button */ - export function createButton(label: string, position?: DialogButtonPosition | undefined): Button; + export function createButton(label: string, position?: DialogButtonPosition): Button; /** * Opens the given dialog if it is not already open @@ -3917,7 +3917,7 @@ declare module 'azdata' { * @param title The title of the page * @param pageName The optional page name parameter will be used for telemetry */ - export function createWizardPage(title: string, pageName?: string | undefined): WizardPage; + export function createWizardPage(title: string, pageName?: string): WizardPage; /** * Create a wizard with the given title and width @@ -3925,7 +3925,7 @@ declare module 'azdata' { * @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, name?: string | undefined, width?: DialogWidth | undefined): Wizard; + export function createWizard(title: string, name?: string, width?: DialogWidth): Wizard; /** * Used to control whether a message in a dialog/wizard is displayed as an error,