UNPKG

@rocket.chat/apps-engine

Version:

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

11 lines (10 loc) 274 B
export type Reaction = `:${string}:`; /** * 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>; }