10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
/* eslint-disable no-unused-vars */
|
|
import { ButtonInteraction } from "discord.js"
|
|
|
|
export default interface Button {
|
|
name: string
|
|
description: string
|
|
type: "button"
|
|
execute: (interaction: ButtonInteraction) => Promise<void>
|
|
}
|