a4p-bot/src/interface/ButtonHandler.ts
2024-05-12 01:15:42 -07:00

9 lines
217 B
TypeScript

import { ButtonInteraction } from "discord.js";
import { ExtendedClient } from "./ExtendedClient";
export type ButtonHandler = (
Bot: ExtendedClient,
interaction: ButtonInteraction<"cached">
) => Promise<void>;