UNPKG

steam-user

Version:

Steam client for Individual and AnonUser Steam account types

19 lines (16 loc) 322 B
/** * @enum ETextFilterSetting * @readonly */ const ETextFilterSetting = { SteamLabOptedOut: 0, Enabled: 1, EnabledAllowProfanity: 2, Disabled: 3, // Value-to-name mapping for convenience 0: 'SteamLabOptedOut', 1: 'Enabled', 2: 'EnabledAllowProfanity', 3: 'Disabled', }; module.exports = ETextFilterSetting;