Update vscode-mssql.d.ts to match what's in the vscode-mssql repo (#22830)

* update vscode-mssql.d.ts

* update extensions that need updates because of the vscode-mssql.d.ts changes

* remove skip

* fix sql projects tests failing because vscode-mssql couldn't be found
This commit is contained in:
Kim Santiago
2023-04-24 13:40:05 -07:00
committed by GitHub
parent c42418d89c
commit 8616c5948b
6 changed files with 407 additions and 123 deletions

View File

@@ -742,7 +742,7 @@ export async function fileContainsCreateTableStatement(fullPath: string, project
* @param serverInfo server information
* @returns target platform for the database project
*/
export async function getTargetPlatformFromServerVersion(serverInfo: azdataType.ServerInfo | vscodeMssql.ServerInfo): Promise<SqlTargetPlatform | undefined> {
export async function getTargetPlatformFromServerVersion(serverInfo: azdataType.ServerInfo | vscodeMssql.IServerInfo): Promise<SqlTargetPlatform | undefined> {
const isCloud = serverInfo.isCloud;
let targetPlatform;