GuildForumChannel

class GuildForumChannel()

A forum-style channel with individual posts organized as threads.

exported from lib.weeble.d

Extends:

Properties

GuildForumChannel.type

type: readonly 15

The type of this channel — use this to narrow to the correct subclass.

Methods

async GuildForumChannel.createPost(options: ForumPostCreateOptions) Promise<ThreadChannel>

Create a new forum post (thread with initial message).

Parameters:
  • options — – The post creation options including name, message content, and optional tags.

Returns:

The created thread.

async GuildForumChannel.edit(options: { name?: string; reason?: string; topic?: string | null; }) Promise<GuildForumChannel>

Edit forum channel properties.

Parameters:
  • options — – The forum channel properties to update.

Returns:

The updated forum channel.