15 lines
367 B
TypeScript
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>
|
|
}
|