Strict null on some query and connection (#7300)

* wip

* make connection work with strict-nulls

* change comments

* fix tests; remove unneeded type forcing

* address feedback

* adjust the logic of query editor

* clean up typing
This commit is contained in:
Anthony Dresser
2019-10-21 15:50:12 -07:00
committed by GitHub
parent 6a375fdd8c
commit 06e86e57e7
22 changed files with 367 additions and 369 deletions

4
src/sql/azdata.d.ts vendored
View File

@@ -285,7 +285,7 @@ declare module 'azdata' {
password: string;
authenticationType: string;
savePassword: boolean;
groupFullName: string;
groupFullName?: string;
groupId: string;
providerName: string;
saveProfile: boolean;
@@ -834,7 +834,7 @@ declare module 'azdata' {
export interface IResultMessage {
batchId?: number;
isError: boolean;
time: string;
time?: string;
message: string;
}