mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 01:25:36 -05:00
integrate with contextkeyservice (#804)
* commting .d.ts changes * added serverinfo to .d.ts * maybe its working? * works * updated contrib * remove unnecessary code * fix compile errors * change back sqlops engine for merge
This commit is contained in:
17
src/sql/sqlops.d.ts
vendored
17
src/sql/sqlops.d.ts
vendored
@@ -1507,6 +1507,23 @@ declare module 'sqlops' {
|
||||
): ModalDialog;
|
||||
}
|
||||
|
||||
export namespace workspace {
|
||||
/**
|
||||
* An event that is emitted when a [dashboard](#DashboardDocument) is opened.
|
||||
*/
|
||||
export const onDidOpenDashboard: vscode.Event<DashboardDocument>;
|
||||
|
||||
/**
|
||||
* An event that is emitted when a [dashboard](#DashboardDocument) is focused.
|
||||
*/
|
||||
export const onDidChangeToDashboard: vscode.Event<DashboardDocument>;
|
||||
}
|
||||
|
||||
export interface DashboardDocument {
|
||||
profile: IConnectionProfile;
|
||||
serverInfo: ServerInfo;
|
||||
}
|
||||
|
||||
export namespace tasks {
|
||||
|
||||
export interface ITaskHandler {
|
||||
|
||||
Reference in New Issue
Block a user