action.enum.js 370 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.ButtonTypeEnum = void 0;
  4. var ButtonTypeEnum;
  5. (function (ButtonTypeEnum) {
  6. ButtonTypeEnum["PRIMARY"] = "primary";
  7. ButtonTypeEnum["SECONDARY"] = "secondary";
  8. ButtonTypeEnum["CLICKED"] = "clicked";
  9. })(ButtonTypeEnum = exports.ButtonTypeEnum || (exports.ButtonTypeEnum = {}));