@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) • 578 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Reasons for collector to be stopped.
*/
var StopReason;
(function (StopReason) {
/**
* Internal Deletion (caused by method). Needed because of ephemeral interactions.
*/
StopReason["InternalDeletion"] = "Deleted by internal method.";
/**
* Internal Stop (caused by method). Needed to describe why the pagination was stopped.
*/
StopReason["InternalStop"] = "Stopped by internal method.";
})(StopReason || (StopReason = {}));
;
exports.default = StopReason;