echadospalante-core
Version:
This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.
12 lines (11 loc) • 499 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PublicationType = void 0;
var PublicationType;
(function (PublicationType) {
PublicationType["STANDARD"] = "STANDARD";
PublicationType["ANNOUNCEMENT"] = "ANNOUNCEMENT";
PublicationType["ACHIEVEMENT"] = "ACHIEVEMENT";
PublicationType["PROMOTION"] = "PROMOTION";
PublicationType["BEHIND_THE_SCENES"] = "BEHIND_THE_SCENES";
})(PublicationType || (exports.PublicationType = PublicationType = {}));