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

8
src/interfaces/IModal.ts Normal file
View File

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