UNPKG

@shadow-dev/core

Version:

A modular core framework for Discord bot development, providing commands, buttons, menus, middleware, and more.

12 lines (11 loc) 268 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Event = void 0; class Event { constructor(event, run, once = false) { this.event = event; this.run = run; this.once = once; } } exports.Event = Event;