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

View File

@@ -0,0 +1,8 @@
/* eslint-disable no-unused-vars */
import { ButtonInteraction } from "discord.js"
export default interface IButton {
name: string
description: string
execute: (interaction: ButtonInteraction) => Promise<void>
}