@evolvejs/core
Version:
An advanced Discord API wrapper with TS and JS support
12 lines (11 loc) • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChannelEvents = void 0;
const BaseEvent_1 = require("./BaseEvent");
class ChannelEvents extends BaseEvent_1.BaseEvent {
constructor(client, channel, shard) {
super(shard, client);
this.channel = channel;
}
}
exports.ChannelEvents = ChannelEvents;