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.

6 lines (5 loc) 128 B
/** * Type for values that are either promised or synchronous. */ type Promised<T> = T | Promise<T>; export default Promised;