interface.js 704 B

1234567891011121314151617181920212223
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /**
  4. * Value types of an Option.
  5. */
  6. var 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. */
  17. var 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 = {}));