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.*

11 lines (10 loc) 310 B
import { eventOptions } from "../interface/event"; import { CasanovaClient } from "../Client/client"; export declare class EventBase { name: string; once?: boolean; client: CasanovaClient; path: string; opts?: object; constructor(eventOptions: eventOptions, opts?: object); }