"use strict";
const ThreadChannel = require("./ThreadChannel");
/**
* Represents a news thread channel. See ThreadChannel for more properties and methods
* @extends ThreadChannel
*/
class NewsThreadChannel extends ThreadChannel {
}
module.exports = NewsThreadChannel;