UNPKG

matrixbots

Version:

The API for Bots on MatrixBots

97 lines (78 loc) 947 B
module.exports = class Bot { /** * @type {string} */ botId; /** * @type {string} */ username; /** * @type {Date} */ addedAt; /** * @type {string} */ logo; /** * @type {string} */ invite; /** * @type {string} */ description; /** * @type {string} */ long; /** * @type {string} */ prefix; /** * @type {number} */ state; /** * @type {string} */ status; /** * @type {string} */ support; /** * @type {string} */ website; /** * @type {string} */ github; /** * @type {string} */ owner; /** * @type {boolean} */ nsfw; /** * @type {number} */ likes; /** * @type {boolean} */ certified; /** * @type {number} */ servers; /** * @type {number} */ users; };