A powerful and extendable Discord bot, with it's own module system :3 thevoid.cafe/projects/voidy
at develop 340 B view raw
1import type { ButtonInteraction } from "discord.js"; 2import type { Button } from "../core/types/Button"; 3import type { VoidyClient } from "../core/VoidyClient"; 4 5export class ButtonHandler { 6 public static invoke(interaction: ButtonInteraction, payload: Button, client: VoidyClient): void { 7 payload.execute(interaction, client); 8 } 9}