UNPKG

@selfcommunity/types

Version:

Types to integrate a community created with SelfCommunity.

26 lines (25 loc) 476 B
/** * SCReactionType interface */ export interface SCReactionType { /** * Unique integer value identifying this reaction */ id?: number; /** * The label of the reaction (unique) */ label?: string; /** * The sentiment value associated to the reaction */ sentiment?: number; /** * The image url of the reaction */ image?: string; /** * Is this reaction active? */ active?: boolean; }