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.

8 lines (7 loc) 242 B
import { Message } from "discord.js"; import Promised from "./Promised"; /** * Type for action that runs after the pagination is sent. */ type AfterSendingAction = (message: Message) => Promised<unknown>; export default AfterSendingAction;