UNPKG

837 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.EventType = void 0;
4var EventType;
5(function (EventType) {
6 EventType["configAdded"] = "configAdded";
7 EventType["containerInit"] = "containerInit";
8 EventType["particlesSetup"] = "particlesSetup";
9 EventType["containerStarted"] = "containerStarted";
10 EventType["containerStopped"] = "containerStopped";
11 EventType["containerDestroyed"] = "containerDestroyed";
12 EventType["containerPaused"] = "containerPaused";
13 EventType["containerPlay"] = "containerPlay";
14 EventType["containerBuilt"] = "containerBuilt";
15 EventType["particleAdded"] = "particleAdded";
16 EventType["particleDestroyed"] = "particleDestroyed";
17 EventType["particleRemoved"] = "particleRemoved";
18})(EventType || (exports.EventType = EventType = {}));