Move code around for more linting (#8190)

* testing

* moving around all the code

* fix strict nulls
This commit is contained in:
Anthony Dresser
2019-11-04 10:41:28 -08:00
committed by GitHub
parent 3c702c15e2
commit ade68b184d
145 changed files with 248 additions and 231 deletions

View File

@@ -3,8 +3,6 @@
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { ConnectionProviderProperties } from 'sql/workbench/parts/connection/common/connectionProviderExtension';
import * as azdata from 'azdata';
import { Event } from 'vs/base/common/event';
@@ -19,6 +17,12 @@ export const clientCapabilities = {
hostVersion: HOST_VERSION
};
export interface ConnectionProviderProperties {
providerId: string;
displayName: string;
connectionOptions: azdata.ConnectionOption[];
}
export interface ProviderFeatures {
connection: ConnectionProviderProperties;
}