djs-easy
Version:
djs-easy is a javascript package for discord with the a lot stuff you need to make your bot programming easy
11 lines • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const discord_js_1 = require("discord.js");
class client extends discord_js_1.Client {
constructor(options) {
super(options);
this.commands = new discord_js_1.Collection();
this.commandAliases = new discord_js_1.Collection();
}
}
exports.default = client;