@shadow-dev/core
Version:
A modular core framework for Discord bot development, providing commands, buttons, menus, middleware, and more.
10 lines (9 loc) • 390 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventPriority = void 0;
var EventPriority;
(function (EventPriority) {
EventPriority[EventPriority["HIGH"] = 0] = "HIGH";
EventPriority[EventPriority["NORMAL"] = 1] = "NORMAL";
EventPriority[EventPriority["LOW"] = 2] = "LOW";
})(EventPriority || (exports.EventPriority = EventPriority = {}));