Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463 (#7206)

* Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463

* fix config changes

* fix strictnull checks
This commit is contained in:
Anthony Dresser
2019-09-15 22:38:26 -07:00
committed by GitHub
parent fa6c52699e
commit ea0f9e6ce9
1226 changed files with 21541 additions and 17633 deletions

View File

@@ -12,7 +12,7 @@ export const IDashboardService = createDecorator<IDashboardService>('dashboardSe
export interface IDashboardService {
_serviceBrand: any;
_serviceBrand: undefined;
readonly onDidOpenDashboard: Event<azdata.DashboardDocument>;
readonly onDidChangeToDashboard: Event<azdata.DashboardDocument>;
readonly onLayout: Event<DOM.Dimension>;

View File

@@ -9,7 +9,7 @@ import * as DOM from 'vs/base/browser/dom';
import * as azdata from 'azdata';
export class DashboardService implements IDashboardService {
public _serviceBrand: any;
public _serviceBrand: undefined;
private _onDidOpenDashboard = new Emitter<azdata.DashboardDocument>();
public readonly onDidOpenDashboard: Event<azdata.DashboardDocument> = this._onDidOpenDashboard.event;

View File

@@ -17,7 +17,7 @@ export interface IDashboardWebview extends IView {
}
export interface IDashboardViewService {
_serviceBrand: any;
_serviceBrand: undefined;
onRegisteredWebview: Event<IDashboardWebview>;
registerWebview(widget: IDashboardWebview);
onRegisteredModelView: Event<IModelView>;

View File

@@ -8,7 +8,7 @@ import { Event, Emitter } from 'vs/base/common/event';
import { IModelView } from 'sql/platform/model/browser/modelViewService';
export class DashboardViewService implements IDashboardViewService {
_serviceBrand: any;
_serviceBrand: undefined;
private _onRegisteredWebview = new Emitter<IDashboardWebview>();
public readonly onRegisteredWebview: Event<IDashboardWebview> = this._onRegisteredWebview.event;