UNPKG

steam-user

Version:

Steam client for Individual and AnonUser Steam account types

17 lines (14 loc) 254 B
/** * @enum EMessageReactionType * @readonly */ const EMessageReactionType = { Invalid: 0, Emoticon: 1, Sticker: 2, // Value-to-name mapping for convenience 0: 'Invalid', 1: 'Emoticon', 2: 'Sticker', }; module.exports = EMessageReactionType;