Allow authtype undefined by default

This commit is contained in:
Adria Navarro 2023-07-13 11:09:40 +02:00
parent ca0d8e2eb6
commit a7801c52f8
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ interface NTLMMSSQLConfig extends BasicMSSQLConfig {
}
type MSSQLConfig =
| (BasicMSSQLConfig & { authType: undefined })
| (BasicMSSQLConfig & { authType?: undefined })
| AzureADMSSQLConfig
| NTLMMSSQLConfig