UNPKG

@notoiro/djs-button-pages

Version:

A simple yet powerful module for implementing customizable embed pages with buttons in Discord chat. Works only with Discord.js.

9 lines (8 loc) 345 B
import { ButtonInteraction } from "discord.js"; import PaginationSent from "../Structures/PaginationSent"; import Promised from "./Promised"; /** * Type for action that is called after the button is pressed. */ type ButtonAction = (pagination: PaginationSent, interaction: ButtonInteraction) => Promised<unknown>; export default ButtonAction;