gluon
    Preparing search index...

    Class MessageReactionManager

    Manages the reactions of a message.

    Implements

    • MessageReactionManager
    Index

    Constructors

    • Creates a message reaction manager.

      Parameters

      • client: Client
      • guild: Guild
      • existingReactions: MessageReactionManagerStorageJSON | MessageReactionManagerCacheJSON = {}

        Existing reactions for a message.

      Returns MessageReactionManager

    Methods

    • Adds a reaction to a message.

      Parameters

      • userId: string

        The id of the user who reacted.

      • emoji: string

        The id or unicode emoji that was reacted with.

      • data: Omit

        The raw MESSAGE_REACTION_ADD data.

      Returns void

    • Removes a reaction from a message.

      Parameters

      • userId: string

        The id of the user whose reaction was removed.

      • emoji: string

        The id or unicode emoji for which the reaction was removed.

      Returns void

    • Returns the JSON representation of this structure.

      Parameters

      • Optionalformat: JsonTypes

        The format to return the data in.

      Returns
          | ReactionDiscordJSON[]
          | { [key: string]: ReactionStorageJSON
          | ReactionCacheJSON }