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