mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-29 00:00:29 -04:00
fix strict null issues (#22430)
This commit is contained in:
4
extensions/mssql/src/mssql.d.ts
vendored
4
extensions/mssql/src/mssql.d.ts
vendored
@@ -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'.
|
||||
|
||||
Reference in New Issue
Block a user