diff --git a/src/structures/Message.js b/src/structures/Message.js index fd28c6b7d..cbc39c3ca 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -23,14 +23,14 @@ class Message extends Base { /** * @param {Client} client The instantiating client * @param {Object} data The data for the message - * @param {TextChannel|DMChannel} channel The channel the message was sent in + * @param {TextChannel|DMChannel|NewsChannel} 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} + * @type {TextChannel|DMChannel|NewsChannel} */ this.channel = channel; diff --git a/typings/index.d.ts b/typings/index.d.ts index 237036127..1eb6930d8 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -929,7 +929,7 @@ declare module 'discord.js' { } export class Message extends Base { - constructor(client: Client, data: object, channel: TextChannel | DMChannel); + constructor(client: Client, data: object, channel: TextChannel | DMChannel | NewsChannel); private _edits: Message[]; private patch(data: object): void;