fix option sources (#12387)

This commit is contained in:
Charles Gagnon
2020-09-16 23:00:50 -07:00
committed by GitHub
parent be1e0b3c8d
commit fca8b85a72
4 changed files with 18 additions and 27 deletions

View File

@@ -5,7 +5,7 @@
import * as azdata from 'azdata';
import * as vscode from 'vscode';
import { OptionsSource, OptionsSourceType } from './helpers/optionSources';
import { OptionsSourceType } from './helpers/optionSources';
export const NoteBookEnvironmentVariablePrefix = 'AZDATA_NB_VAR_';
@@ -196,7 +196,7 @@ export interface IOptionsSource {
export interface OptionsInfo {
values?: string[] | azdata.CategoryValue[],
source?: OptionsSource,
source?: IOptionsSource,
defaultValue: string,
optionsType?: OptionsType
}