From 93cdb2f2fa3ebde8f06cefe9de4a351b99f3b5e6 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Wed, 2 Mar 2022 09:32:57 +0000 Subject: [PATCH] feat: Backport `MessageMentions` channel type fixes (#7562) --- typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 51c60035f2d5..bf4f2edfd387 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1736,11 +1736,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;