Class ThreadableChannel<TC, TH>

Represents a guild textable channel.

Type Parameters

Hierarchy

Constructors

Properties

defaultAutoArchiveDuration: 60 | 1440 | 4320 | 10080

The default auto archive duration for threads created in this channel.

guildID: string

The id of the guild this channel is in.

id: string
lastMessage?: null | Message<TC>

The last message sent in this channel. This will only be present if a message has been sent within the current session.

lastMessageID: null | string

The ID of last message sent in this channel.

messages: TypedCollection<string, RawMessage, Message<TC>, []>

The cached messages in this channel.

name: string

The name of this channel.

nsfw: boolean

If this channel is age gated.

parentID: null | string

The ID of the parent of this channel, if applicable.

permissionOverwrites: TypedCollection<string, RawOverwrite, PermissionOverwrite, []>

The permission overwrites of this channel.

position: number

The position of this channel on the sidebar.

rateLimitPerUser: number

The amount of seconds between non-moderators sending messages.

threads: TypedCollection<string, RawChannelTypeMap[TH["type"]], TH, []>

The threads in this channel.

topic: null | string

The topic of the channel.

The type of this channel.

Accessors

  • get createdAt(): Date
  • Returns Date

  • get guild(): Guild
  • The guild associated with this channel. This will throw an error if the guild is not cached.

    Returns Guild

  • get mention(): string
  • A string that will mention this channel.

    Returns string

  • get parent(): undefined | null | CategoryChannel
  • The parent of this channel, if applicable. This will be a text/announcement/forum channel if we're in a thread, category otherwise.

    Returns undefined | null | CategoryChannel

Methods

  • Create an invite for this channel. If the guild is not a COMMUNITY server, invites can only be made to last 30 days.

    Parameters

    Returns Promise<Invite<"withMetadata", TC>>

  • Create a message in this channel.

    Parameters

    Returns Promise<Message<TC>>

  • Add a reaction to a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to add a reaction to.

    • emoji: string

      The reaction to add to the message. name:id for custom emojis, and the unicode codepoint for default emojis.

    Returns Promise<void>

  • Create a webhook in this channel.

    Parameters

    Returns Promise<Webhook>

  • Close a direct message, leave a group channel, or delete a guild channel.

    Returns Promise<void>

  • Delete a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to delete.

    • Optional reason: string

      The reason for deleting the message.

    Returns Promise<void>

  • Bulk delete messages in this channel.

    Parameters

    • messageIDs: string[]

      The IDs of the messages to delete. Any duplicates or messages older than two weeks will cause an error.

    • Optional reason: string

      The reason for deleting the messages.

    Returns Promise<number>

  • Delete a permission overwrite on this channel.

    Parameters

    • overwriteID: string

      The ID of the permission overwrite to delete.

    • Optional reason: string

      The reason for deleting the permission overwrite.

    Returns Promise<void>

  • Remove a reaction from a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to remove a reaction from.

    • emoji: string

      The reaction to remove from the message. name:id for custom emojis, and the unicode codepoint for default emojis.

    • Optional user: string

      The user to remove the reaction from, @me for the current user (default).

    Returns Promise<void>

  • Remove all, or a specific emoji's reactions from a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to remove reactions from.

    • Optional emoji: string

      The reaction to remove from the message. name:id for custom emojis, and the unicode codepoint for default emojis. Omit to remove all reactions.

    Returns Promise<void>

  • Edit a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to edit.

    • options: EditMessageOptions

      The options for editing the message.

    Returns Promise<Message<TC>>

  • Edit a permission overwrite on this channel.

    Parameters

    • overwriteID: string

      The ID of the permission overwrite to edit.

    • options: EditPermissionOptions

      The options for editing the permission overwrite.

    Returns Promise<void>

  • Get the invites of this channel.

    Returns Promise<Invite<"withMetadata", TC>[]>

  • Get a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to get.

    Returns Promise<Message<TC>>

  • Get the pinned messages in this channel.

    Returns Promise<Message<TC>[]>

  • Get the users who reacted with a specific emoji on a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to get reactions from.

    • emoji: string

      The reaction to remove from the message. name:id for custom emojis, and the unicode codepoint for default emojis.

    • Optional options: GetReactionsOptions

      The options for getting the reactions.

    Returns Promise<User[]>

  • Get the webhooks in this channel.

    Returns Promise<Webhook[]>

  • Get the permissions of a member. If providing an id, the member must be cached.

    Parameters

    • member: string | Member

      The member to get the permissions of.

    Returns Permission

  • Pin a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to pin.

    • Optional reason: string

      The reason for pinning the message.

    Returns Promise<void>

  • Purge an amount of messages from this channel.

    Parameters

    • options: PurgeOptions<TC>

      The options to purge. before, after, and around All are mutually exclusive.

    Returns Promise<number>

  • Show a typing indicator in this channel. How long users see this varies from client to client.

    Returns Promise<void>

  • Create a thread from an existing message in this channel.

    Parameters

    Returns Promise<TH>

  • Create a thread without an existing message in this channel.

    Parameters

    Returns Promise<TH>

  • Returns string

  • Unpin a message in this channel.

    Parameters

    • messageID: string

      The ID of the message to unpin.

    • Optional reason: string

      The reason for unpinning the message.

    Returns Promise<void>

  • Parameters

    • Optional timestamp: number | Date

    Returns string

  • Parameters

    • id: string

    Returns Date

  • Parameters

    • id: string

    Returns number

Generated using TypeDoc