UNPKG

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