Information about a Message's reaction.

Hierarchy

Constructors

Properties

Accessors

Constructors

Properties

client: Client
emoji: APIEmote

Emote.

Accessors

  • get message(): Message | {
        channelID: string;
        guild: Guild | {
            id?: string;
        };
        id: string;
    }
  • The message where the reaction has been added. If the message is cached, it'll return a Message component, otherwise it'll return basic information about this message.

    Returns Message | {
        channelID: string;
        guild: Guild | {
            id?: string;
        };
        id: string;
    }

  • get reactor(): Member | {
        id: string;
    }
  • Cached member. If member isn't cached will return an object with the member's id.

    Returns Member | {
        id: string;
    }