Fetch arc dc config profile list from azdata (#12678)

This commit is contained in:
Arvind Ranasaria
2020-09-30 14:25:15 -07:00
committed by GitHub
parent ab85028a94
commit 7bfea07b9b
4 changed files with 33 additions and 19 deletions

View File

@@ -219,9 +219,9 @@ export type ComponentCSSStyles = {
};
export interface IOptionsSource {
readonly type: OptionsSourceType,
readonly variableNames: { [index: string]: string; },
getOptions(): Promise<string[] | azdata.CategoryValue[]>,
readonly type: OptionsSourceType;
readonly variableNames: { [index: string]: string; };
getOptions(): Promise<string[] | azdata.CategoryValue[]>;
getVariableValue(variableName: string, input: string): Promise<string>;
getIsPassword(variableName: string): boolean;
}