fix strict null issues (#22430)

This commit is contained in:
Alan Ren
2023-03-23 15:19:23 -07:00
committed by GitHub
parent 00897fc513
commit 59ad572800
8 changed files with 56 additions and 53 deletions

View File

@@ -1104,11 +1104,11 @@ declare module 'mssql' {
/**
* Schemas owned by the user.
*/
ownedSchemas: string[] | undefined;
ownedSchemas: string[];
/**
* Database roles that the user belongs to.
*/
databaseRoles: string[] | undefined;
databaseRoles: string[];
/**
* The name of the server login associated with the user.
* Only applicable when the user type is 'WithLogin'.