/* 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 }