From c05b38873bb3c37c6e4ebcb6b6373a8858cc03de Mon Sep 17 00:00:00 2001 From: oof2win2 Date: Tue, 25 Jan 2022 08:34:04 +0100 Subject: [PATCH] types: fix MessageMentions channel types (#7316) --- packages/discord.js/typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index 5501b68e5..0cfe52569 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -1633,11 +1633,11 @@ export class MessageMentions { everyone: boolean, repliedUser?: APIUser | User, ); - private _channels: Collection | null; + private _channels: Collection | null; private readonly _content: string; private _members: Collection | null; - public readonly channels: Collection; + public readonly channels: Collection; public readonly client: Client; public everyone: boolean; public readonly guild: Guild;