Files
illegitimate-bot/src/interfaces/ContextMenu.ts
2023-12-31 13:31:08 +01:00

15 lines
367 B
TypeScript

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