echadospalante-domain
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) • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContentType = void 0;
var ContentType;
(function (ContentType) {
ContentType["TEXT"] = "TEXT";
ContentType["IMAGE"] = "IMAGE";
ContentType["VIDEO"] = "VIDEO";
ContentType["LINK"] = "LINK";
ContentType["FILE"] = "FILE";
})(ContentType || (exports.ContentType = ContentType = {}));