UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

10 lines (9 loc) 236 B
/** * Interface which represents a reaction which can be added to a message. */ export interface IMessageReactions { [emoji: string]: Array<IMessageReaction>; } export interface IMessageReaction { usernames?: Array<string>; }