@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.
15 lines (14 loc) • 417 B
TypeScript
/**
* Reasons for collector to be stopped.
*/
declare enum StopReason {
/**
* Internal Deletion (caused by method). Needed because of ephemeral interactions.
*/
InternalDeletion = "Deleted by internal method.",
/**
* Internal Stop (caused by method). Needed to describe why the pagination was stopped.
*/
InternalStop = "Stopped by internal method."
}
export default StopReason;