MessageReactionType type

The type of emoji reaction that can be applied to a message. Possible values include: 'like', 'heart', '1f440_eyes', '2705_whiteheavycheckmark', 'launch', '1f4cc_pushpin'

type MessageReactionType =
  | "like"
  | "heart"
  | "1f440_eyes"
  | "2705_whiteheavycheckmark"
  | "launch"
  | "1f4cc_pushpin"
  | (string & {})