Files
illegitimate-bot/src/interfaces/IContextMenu.ts
2024-02-16 15:31:30 +01:00

14 lines
343 B
TypeScript

/* eslint-disable no-unused-vars */
import {
ContextMenuCommandInteraction,
ContextMenuCommandBuilder
} from "discord.js"
export default interface IContextMenu {
name: string
description: string
dev?: boolean
data: ContextMenuCommandBuilder
execute: (interaction: ContextMenuCommandInteraction) => Promise<void>
}