mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
19 lines
824 B
TypeScript
19 lines
824 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 { DeploymentOptions as mssqlDeploymentOptions } from '../../../mssql/src/mssql';
|
|
import { DeploymentOptions as vscodeMssqlDeploymentOptions } from 'vscode-mssql';
|
|
|
|
export type DeploymentOptions = mssqlDeploymentOptions | vscodeMssqlDeploymentOptions;
|
|
|
|
export interface IDeploySettings {
|
|
databaseName: string;
|
|
serverName: string;
|
|
connectionUri: string;
|
|
sqlCmdVariables?: Record<string, string>;
|
|
deploymentOptions?: DeploymentOptions;
|
|
profileUsed?: boolean;
|
|
}
|