Updated interfacess and types

This commit is contained in:
2024-02-16 15:31:30 +01:00
parent 6dfe972057
commit 137401630e
14 changed files with 538 additions and 536 deletions

10
src/interfaces/IEvent.ts Normal file
View File

@@ -0,0 +1,10 @@
/* eslint-disable no-unused-vars */
import { ClientEvents } from "discord.js"
export default interface IEvent {
name: string
description: string
event: keyof ClientEvents
disabled?: boolean
execute(...args: any[]): void
}