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.

19 lines (18 loc) 263 B
/** * Represents pagination state. */ declare enum PaginationState { /** * Setup in process. */ NotReady = 0, /** * Sent and working. */ Ready = 1, /** * Ended. */ Over = 2 } export default PaginationState;