UNPKG

756 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.CommandScope = exports.OptionType = void 0;
4/**
5 * Value types of an Option.
6 */
7var OptionType;
8(function (OptionType) {
9 OptionType["Any"] = "any";
10 OptionType["Array"] = "array";
11 OptionType["Boolean"] = "boolean";
12 OptionType["Number"] = "number";
13 OptionType["String"] = "string";
14})(OptionType = exports.OptionType || (exports.OptionType = {}));
15/**
16 * Scope of the command.
17 */
18var CommandScope;
19(function (CommandScope) {
20 CommandScope["InProject"] = "in";
21 CommandScope["OutProject"] = "out";
22 CommandScope["Everywhere"] = "all";
23 CommandScope["Default"] = "in";
24})(CommandScope = exports.CommandScope || (exports.CommandScope = {}));