mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -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,
|
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();
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user