generated from nhcarrigan/template
13 lines
298 B
TypeScript
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>;
|