mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Make new workspace inputbox editable in Create project from database dialog (#13842)
* update create project from database dialog to have editable new workspace * add validation * add test * add error message * Remove test for now * cleanup * add periods * throw errors * change return type to void
This commit is contained in:
@@ -20,9 +20,10 @@ declare module 'dataworkspace' {
|
||||
|
||||
/**
|
||||
* Add projects to the workspace
|
||||
* @param projectFiles Uris of project files to add
|
||||
* @param projectFiles Uris of project files to add,
|
||||
* @param workspaceFilePath workspace file to create if no workspace is open
|
||||
*/
|
||||
addProjectsToWorkspace(projectFiles: vscode.Uri[]): Promise<void>;
|
||||
addProjectsToWorkspace(projectFiles: vscode.Uri[], workspaceFilePath?: vscode.Uri): Promise<void>;
|
||||
|
||||
/**
|
||||
* Change focus to Projects view
|
||||
|
||||
Reference in New Issue
Block a user