Files
pavelle/src/interfaces/button.ts
T
naomi 2544d2d15b
Node.js CI / Lint and Test (push) Successful in 42s
feat: add buttons to throw results
2025-08-15 15:00:27 -07:00

13 lines
298 B
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import type { Pavelle } from "./pavelle.js";
import type { ButtonInteraction } from "discord.js";
export type Button = (
pavelle: Pavelle,
interaction: ButtonInteraction<"cached">
)=> Promise<void>;