mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-09 09:42:34 -05:00
Fix how data workspace handles untitled workspaces (#14505)
* add more workspace apis * update dialog and check workspace scheme * cleanup * add comment * update create project from db dialog * cleanup * update names * add test
This commit is contained in:
8
src/sql/azdata.proposed.d.ts
vendored
8
src/sql/azdata.proposed.d.ts
vendored
@@ -944,13 +944,19 @@ declare module 'azdata' {
|
||||
/**
|
||||
* Creates and enters a workspace at the specified location
|
||||
*/
|
||||
export function createWorkspace(location: vscode.Uri, workspaceFile?: vscode.Uri): Promise<void>;
|
||||
export function createAndEnterWorkspace(location: vscode.Uri, workspaceFile?: vscode.Uri): Promise<void>;
|
||||
|
||||
/**
|
||||
* Enters the workspace with the provided path
|
||||
* @param workspacefile
|
||||
*/
|
||||
export function enterWorkspace(workspaceFile: vscode.Uri): Promise<void>;
|
||||
|
||||
/**
|
||||
* Saves and enters the workspace with the provided path
|
||||
* @param workspacefile
|
||||
*/
|
||||
export function saveAndEnterWorkspace(workspaceFile: vscode.Uri): Promise<void>;
|
||||
}
|
||||
|
||||
export interface TableComponentProperties {
|
||||
|
||||
Reference in New Issue
Block a user