mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
Add Create Project from Database quickpick (#16572)
* Add Create Project from Database quickpick * fix test * pr comments * Add comment
This commit is contained in:
@@ -3,13 +3,16 @@
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { ExtractTarget } from '../../../../mssql';
|
||||
import * as mssql from '../../../../mssql';
|
||||
import * as vscodeMssql from 'vscode-mssql';
|
||||
|
||||
type ExtractTarget = mssql.ExtractTarget | vscodeMssql.ExtractTarget;
|
||||
|
||||
/**
|
||||
* Data model to communicate for Import API
|
||||
*/
|
||||
export interface ImportDataModel {
|
||||
serverId: string;
|
||||
connectionUri: string;
|
||||
database: string;
|
||||
projName: string;
|
||||
filePath: string;
|
||||
|
||||
Reference in New Issue
Block a user