Skip to content

Commit

Permalink
feat: Backport MessageMentions channel type fixes (#7562)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Mar 2, 2022
1 parent 611d3a7 commit 93cdb2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/index.d.ts
Expand Up @@ -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;
Expand Down

0 comments on commit 93cdb2f

Please sign in to comment.