mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 09:35:38 -05:00
28 lines
789 B
TypeScript
28 lines
789 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 { IAzdataTool } from '../azdata';
|
|
|
|
export class AzdataToolService {
|
|
private _localAzdata: IAzdataTool | undefined;
|
|
constructor() {
|
|
}
|
|
|
|
/**
|
|
* Gets the localAzdata that was last saved
|
|
*/
|
|
get localAzdata(): IAzdataTool | undefined {
|
|
return this._localAzdata;
|
|
}
|
|
|
|
/**
|
|
* Sets the localAzdata object to be used for azdata operations
|
|
*/
|
|
set localAzdata(azdata: IAzdataTool | undefined) {
|
|
this._localAzdata = azdata;
|
|
}
|
|
}
|
|
|