mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-31 09:35:39 -05:00
Fix table designer parameter typings (#23375)
This commit is contained in:
@@ -39,7 +39,7 @@ export class TableDesignerInput extends EditorInput {
|
||||
private _provider: TableDesignerProvider,
|
||||
tableInfo: azdata.designers.TableInfo,
|
||||
telemetryInfo: { [key: string]: string },
|
||||
objectExplorerContext: azdata.ObjectExplorerContext,
|
||||
objectExplorerContext: azdata.ObjectExplorerContext | undefined,
|
||||
@IInstantiationService private readonly _instantiationService: IInstantiationService,
|
||||
@INotificationService private readonly _notificationService: INotificationService) {
|
||||
super();
|
||||
|
||||
@@ -56,7 +56,7 @@ export class TableDesignerComponentInput implements DesignerComponentInput {
|
||||
constructor(private readonly _provider: TableDesignerProvider,
|
||||
public tableInfo: azdata.designers.TableInfo,
|
||||
private _telemetryInfo: ITelemetryEventProperties,
|
||||
private _objectExplorerContext: azdata.ObjectExplorerContext,
|
||||
private _objectExplorerContext: azdata.ObjectExplorerContext | undefined,
|
||||
@INotificationService private readonly _notificationService: INotificationService,
|
||||
@IAdsTelemetryService readonly _adsTelemetryService: IAdsTelemetryService,
|
||||
@IQueryEditorService private readonly _queryEditorService: IQueryEditorService,
|
||||
|
||||
Reference in New Issue
Block a user