mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 17:22:59 -05:00
15 lines
312 B
TypeScript
15 lines
312 B
TypeScript
'use strict';
|
|
|
|
import * as nls from 'vscode-nls';
|
|
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
export const extensionConfigSectionName = 'azure';
|
|
export const ViewType = 'view';
|
|
|
|
export enum BuiltInCommands {
|
|
SetContext = 'setContext'
|
|
}
|
|
|
|
export const extensionName = localize('extensionName', 'Azure Accounts');
|