generated from nhcarrigan/template
9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import { ButtonInteraction } from "discord.js";
|
|
|
|
import { ExtendedClient } from "./ExtendedClient";
|
|
|
|
export type ButtonHandler = (
|
|
Bot: ExtendedClient,
|
|
interaction: ButtonInteraction<"cached">
|
|
) => Promise<void>;
|