discord.js-pages
Version:
Dynamic pages pagination module for discord.js
27 lines (23 loc) • 692 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ActionLabel = exports.Action = void 0;
var ActionLabel;
exports.ActionLabel = ActionLabel;
(function (ActionLabel) {
ActionLabel["FIRST"] = "\u23EA";
ActionLabel["BACK"] = "\u25C0\uFE0F";
ActionLabel["STOP"] = "\u23F9";
ActionLabel["NEXT"] = "\u25B6\uFE0F";
ActionLabel["LAST"] = "\u23E9";
})(ActionLabel || (exports.ActionLabel = ActionLabel = {}));
var Action;
exports.Action = Action;
(function (Action) {
Action["FIRST"] = "first";
Action["BACK"] = "back";
Action["STOP"] = "stop";
Action["NEXT"] = "next";
Action["LAST"] = "last";
})(Action || (exports.Action = Action = {}));