UNPKG

1.86 kBJavaScriptView Raw
1/*
2 * ---------------------------------------------------------
3 * Copyright(C) Microsoft Corporation. All rights reserved.
4 * ---------------------------------------------------------
5 *
6 * ---------------------------------------------------------
7 * Generated file, DO NOT EDIT
8 * ---------------------------------------------------------
9 */
10"use strict";
11Object.defineProperty(exports, "__esModule", { value: true });
12exports.TypeInfo = exports.ContributedFeatureEnabledValue = void 0;
13/**
14 * The current state of a feature within a given scope
15 */
16var ContributedFeatureEnabledValue;
17(function (ContributedFeatureEnabledValue) {
18 /**
19 * The state of the feature is not set for the specified scope
20 */
21 ContributedFeatureEnabledValue[ContributedFeatureEnabledValue["Undefined"] = -1] = "Undefined";
22 /**
23 * The feature is disabled at the specified scope
24 */
25 ContributedFeatureEnabledValue[ContributedFeatureEnabledValue["Disabled"] = 0] = "Disabled";
26 /**
27 * The feature is enabled at the specified scope
28 */
29 ContributedFeatureEnabledValue[ContributedFeatureEnabledValue["Enabled"] = 1] = "Enabled";
30})(ContributedFeatureEnabledValue = exports.ContributedFeatureEnabledValue || (exports.ContributedFeatureEnabledValue = {}));
31exports.TypeInfo = {
32 ContributedFeatureEnabledValue: {
33 enumValues: {
34 "undefined": -1,
35 "disabled": 0,
36 "enabled": 1
37 }
38 },
39 ContributedFeatureState: {},
40 ContributedFeatureStateQuery: {},
41};
42exports.TypeInfo.ContributedFeatureState.fields = {
43 state: {
44 enumType: exports.TypeInfo.ContributedFeatureEnabledValue
45 }
46};
47exports.TypeInfo.ContributedFeatureStateQuery.fields = {
48 featureStates: {
49 isDictionary: true,
50 dictionaryValueTypeInfo: exports.TypeInfo.ContributedFeatureState
51 }
52};