Fixing deleteDatabaseReference test for vscode-mssql (#23008)

This commit is contained in:
Benjin Dubishar
2023-05-07 13:08:04 -07:00
committed by GitHub
parent 688b0c0819
commit 1620b3b374
3 changed files with 5 additions and 5 deletions

View File

@@ -502,9 +502,9 @@ declare module 'vscode-mssql' {
/**
* Delete a database reference from a project
* @param projectUri Absolute path of the project, including .sqlproj
* @param path Path of the script, including .sql, relative to the .sqlproj
* @param name Name of the reference to be deleted. Name of the System DB, path of the sqlproj, or path of the dacpac
*/
deleteDatabaseReference(projectUri: string, path: string): Promise<ResultStatus>;
deleteDatabaseReference(projectUri: string, name: string): Promise<ResultStatus>;
/**
* Add a folder to a project