@dodona/papyros
Version:
Scratchpad for multiple programming languages in the browser.
20 lines • 774 B
JavaScript
/**
* Enum representing all possible types for supported events
*/
export var BackendEventType;
(function (BackendEventType) {
BackendEventType["Start"] = "start";
BackendEventType["End"] = "end";
BackendEventType["Input"] = "input";
BackendEventType["Output"] = "output";
BackendEventType["Sleep"] = "sleep";
BackendEventType["Error"] = "error";
BackendEventType["Interrupt"] = "interrupt";
BackendEventType["Loading"] = "loading";
BackendEventType["Frame"] = "frame";
BackendEventType["FrameChange"] = "frame-change";
BackendEventType["Stop"] = "stop";
BackendEventType["Files"] = "files";
BackendEventType["Turtle"] = "turtle";
})(BackendEventType || (BackendEventType = {}));
//# sourceMappingURL=BackendEvent.js.map