mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
feat: Backport MessageMentions channel type fixes (#7562)
This commit is contained in:
4
typings/index.d.ts
vendored
4
typings/index.d.ts
vendored
@@ -1736,11 +1736,11 @@ export class MessageMentions {
|
||||
everyone: boolean,
|
||||
repliedUser?: APIUser | User,
|
||||
);
|
||||
private _channels: Collection<Snowflake, TextBasedChannel> | null;
|
||||
private _channels: Collection<Snowflake, AnyChannel> | null;
|
||||
private readonly _content: string;
|
||||
private _members: Collection<Snowflake, GuildMember> | null;
|
||||
|
||||
public readonly channels: Collection<Snowflake, TextBasedChannel>;
|
||||
public readonly channels: Collection<Snowflake, AnyChannel>;
|
||||
public readonly client: Client;
|
||||
public everyone: boolean;
|
||||
public readonly guild: Guild;
|
||||
|
||||
Reference in New Issue
Block a user