UNPKG

discord.js-casanova

Version:

discord.js-casanova is a discord.js framework that sets up your bot as quickly as possible! all you have to do is write the commands and events! *There is a way to disable the command handler and event handler.*

14 lines (13 loc) 298 B
import { CasanovaClient } from "../Client/client"; export interface eventOptions { name: string; once?: boolean; } export interface Event { name: string; once?: boolean; client: CasanovaClient; path: string; opts?: object; execute(...args: any): any; }