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.

23 lines (22 loc) 551 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents pagination state. */ var PaginationState; (function (PaginationState) { /** * Setup in process. */ PaginationState[PaginationState["NotReady"] = 0] = "NotReady"; /** * Sent and working. */ PaginationState[PaginationState["Ready"] = 1] = "Ready"; /** * Ended. */ PaginationState[PaginationState["Over"] = 2] = "Over"; })(PaginationState || (PaginationState = {})); ; exports.default = PaginationState;