@becomes/cms
Version:
Simple CMS for building APIs.
17 lines • 630 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventType = exports.EventSource = void 0;
var EventSource;
(function (EventSource) {
EventSource["ENTRY"] = "ENTRY";
EventSource["TEMPLATE"] = "TEMPLATE";
})(EventSource = exports.EventSource || (exports.EventSource = {}));
var EventType;
(function (EventType) {
EventType["GET"] = "GET";
EventType["GET_ALL"] = "GET_ALL";
EventType["ADD"] = "POST";
EventType["UPDATE"] = "PUT";
EventType["REMOVE"] = "DELETE";
})(EventType = exports.EventType || (exports.EventType = {}));
//# sourceMappingURL=event.interface.js.map