UNPKG

steam-user

Version:

Steam client for Individual and AnonUser Steam account types

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