Extend sql bindings api (#19651)

This commit is contained in:
Barbara Valdez
2022-06-07 10:12:41 -07:00
committed by GitHub
parent 7007e18314
commit a73eb0386b
3 changed files with 12 additions and 3 deletions

View File

@@ -63,6 +63,12 @@ declare module 'sql-bindings' {
* @returns array of names of Azure Functions in the file
*/
getAzureFunctions(filePath: string): Promise<GetAzureFunctionsResult>;
/**
* Adds the required nuget package to the project
* @param selectedProjectFile is the users selected project file path
*/
addSqlNugetReferenceToProjectFile(selectedProjectFile: string): Promise<void>
}
/**