From 58bc1458d04284390d39bbf32ad5817ed7281bb7 Mon Sep 17 00:00:00 2001 From: A1ex <31402774+a9ex@users.noreply.github.com> Date: Wed, 30 Jun 2021 07:24:37 +0200 Subject: [PATCH] docs(Message): Add ThreadChannel as a channel type (#5972) --- src/structures/Message.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/Message.js b/src/structures/Message.js index e69fd63c0..683caaf92 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -27,14 +27,14 @@ class Message extends Base { /** * @param {Client} client The instantiating client * @param {APIMessage} data The data for the message - * @param {TextChannel|DMChannel|NewsChannel} channel The channel the message was sent in + * @param {TextChannel|DMChannel|NewsChannel|ThreadChannel} channel The channel the message was sent in */ constructor(client, data, channel) { super(client); /** * The channel that the message was sent in - * @type {TextChannel|DMChannel|NewsChannel} + * @type {TextChannel|DMChannel|NewsChannel|ThreadChannel} */ this.channel = channel;