UNPKG

steam-user

Version:

Steam client for Individual and AnonUser Steam account types

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