UNPKG

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) 133 B
/** * Type for values that are either promised or synchronous. */ type Promised<T> = T | Promise<T>; export default Promised;