mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-13 19:48:37 -05:00
* work in progress * set up necessary code. need to work on getting it working * formatting * work in progress * work in progress * formatting * work in progress * work in progress * work in progress * formatting * needs a lot of work regarding how we do actions vs how extensions do actions * formatting * use connection profile for actions * change action to be
22 lines
696 B
TypeScript
22 lines
696 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
import * as sqlops from 'sqlops';
|
|
|
|
export interface IConnectionProfile extends sqlops.IConnectionProfile {
|
|
getOptionsKey(): string;
|
|
matches(profile: sqlops.IConnectionProfile): boolean;
|
|
}
|
|
|
|
export interface IConnectionProfileStore {
|
|
options: {};
|
|
groupId: string;
|
|
providerName: string;
|
|
savePassword: boolean;
|
|
id: string;
|
|
}
|
|
|