mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 01:25:36 -05:00
* Rebase from main branch * import from module * Add mssql module ref Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
23 lines
741 B
TypeScript
23 lines
741 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
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 {
|
|
connectionUri: string;
|
|
database: string;
|
|
projName: string;
|
|
filePath: string;
|
|
version: string;
|
|
extractTarget: ExtractTarget;
|
|
sdkStyle: boolean;
|
|
}
|