mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 17:22:48 -05:00
Merge from master
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
'use strict';
|
||||
|
||||
import { nb } from 'sqlops';
|
||||
import { TreeItem } from 'vs/workbench/api/node/extHostTypes';
|
||||
import { nb, IConnectionProfile } from 'sqlops';
|
||||
import * as vsExtTypes from 'vs/workbench/api/node/extHostTypes';
|
||||
|
||||
// SQL added extension host types
|
||||
export enum ServiceOptionType {
|
||||
@@ -315,7 +315,8 @@ export interface ToolbarLayout {
|
||||
orientation: Orientation;
|
||||
}
|
||||
|
||||
export class TreeComponentItem extends TreeItem {
|
||||
export class TreeComponentItem extends vsExtTypes.TreeItem {
|
||||
label?: string;
|
||||
checked?: boolean;
|
||||
}
|
||||
|
||||
@@ -324,6 +325,12 @@ export enum AzureResource {
|
||||
Sql = 1
|
||||
}
|
||||
|
||||
export class TreeItem extends vsExtTypes.TreeItem {
|
||||
label?: string;
|
||||
payload: IConnectionProfile;
|
||||
providerHandle: string;
|
||||
}
|
||||
|
||||
export interface ServerInfoOption {
|
||||
isBigDataCluster: boolean;
|
||||
clusterEndpoints: ClusterEndpoint;
|
||||
|
||||
Reference in New Issue
Block a user