Files
eris-discordbot-template/node_modules/eris/lib/structures/NewsThreadChannel.js
2023-11-29 18:23:54 +03:00

16 lines
356 B
JavaScript

"use strict";
const ThreadChannel = require("./ThreadChannel");
/**
* Represents a news thread channel. See ThreadChannel for extra properties.
* @extends ThreadChannel
*/
class NewsThreadChannel extends ThreadChannel {
constructor(data, client, messageLimit) {
super(data, client, messageLimit);
}
}
module.exports = NewsThreadChannel;