Source: factory/eventType.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
 * イベントタイプ
 */
var EventType;
(function (EventType) {
    EventType["ScreeningEvent"] = "ScreeningEvent";
    EventType["ScreeningEventSeries"] = "ScreeningEventSeries";
})(EventType || (EventType = {}));
exports.default = EventType;