15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import { Button } from "interfaces"
|
|
|
|
export = {
|
|
name: "inactiveapplicationdeny",
|
|
description: "Denies an inactivity application.",
|
|
type: "button",
|
|
|
|
async execute(interaction) {
|
|
await interaction.reply({
|
|
content: "This button is currently disabled.",
|
|
ephemeral: true,
|
|
})
|
|
},
|
|
} as Button
|