UNPKG

4chan-full

Version:

www.4chan.org non-official read only api. That supports cool things!

15 lines (11 loc) 268 B
const { MessageContentPart } = require("./MessageContentPart"); class MessageContent { /** @type {String} */ text; /** @type {Array<MessageContentPart>} */ parts; toString() { return this.text; } } module.exports = { MessageContent };