Fix table designer parameter typings (#23375)

This commit is contained in:
Charles Gagnon
2023-06-12 10:51:42 -07:00
committed by GitHub
parent 84d563139e
commit d857ddb54b
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ export class TableDesignerInput extends EditorInput {
private _provider: TableDesignerProvider, private _provider: TableDesignerProvider,
tableInfo: azdata.designers.TableInfo, tableInfo: azdata.designers.TableInfo,
telemetryInfo: { [key: string]: string }, telemetryInfo: { [key: string]: string },
objectExplorerContext: azdata.ObjectExplorerContext, objectExplorerContext: azdata.ObjectExplorerContext | undefined,
@IInstantiationService private readonly _instantiationService: IInstantiationService, @IInstantiationService private readonly _instantiationService: IInstantiationService,
@INotificationService private readonly _notificationService: INotificationService) { @INotificationService private readonly _notificationService: INotificationService) {
super(); super();

View File

@@ -56,7 +56,7 @@ export class TableDesignerComponentInput implements DesignerComponentInput {
constructor(private readonly _provider: TableDesignerProvider, constructor(private readonly _provider: TableDesignerProvider,
public tableInfo: azdata.designers.TableInfo, public tableInfo: azdata.designers.TableInfo,
private _telemetryInfo: ITelemetryEventProperties, private _telemetryInfo: ITelemetryEventProperties,
private _objectExplorerContext: azdata.ObjectExplorerContext, private _objectExplorerContext: azdata.ObjectExplorerContext | undefined,
@INotificationService private readonly _notificationService: INotificationService, @INotificationService private readonly _notificationService: INotificationService,
@IAdsTelemetryService readonly _adsTelemetryService: IAdsTelemetryService, @IAdsTelemetryService readonly _adsTelemetryService: IAdsTelemetryService,
@IQueryEditorService private readonly _queryEditorService: IQueryEditorService, @IQueryEditorService private readonly _queryEditorService: IQueryEditorService,