4chan-full
Version:
www.4chan.org non-official read only api. That supports cool things!
28 lines (18 loc) • 377 B
JavaScript
const { Thread } = require("./Thread");
class Board {
/** @type {String} */
name;
/** @type {String} */
code;
/** @type {Array<Thread>} */
threads;
/** @type {Number} */
page;
/** @type {Boolean} */
worksafe;
/** @type {String} Board Banner URL */
banner;
/** @type {String} */
url;
}
module.exports = { Board };