UNPKG

oceanic.js

Version:

A NodeJS library for interfacing with Discord.

12 lines (11 loc) 465 B
/** @module ForumChannel */ import ThreadOnlyChannel from "./ThreadOnlyChannel"; import type Client from "../Client"; import type { ChannelTypes } from "../Constants"; import type { JSONForumChannel, RawForumChannel } from "../types"; /** Represents a thread forum channel. */ export default class ForumChannel extends ThreadOnlyChannel { type: ChannelTypes.GUILD_FORUM; constructor(data: RawForumChannel, client: Client); toJSON(): JSONForumChannel; }