UNPKG

steam-user

Version:

Steam client for Individual and AnonUser Steam account types

17 lines (14 loc) 244 B
/** * @enum EAgreementType * @readonly */ const EAgreementType = { Invalid: -1, GlobalSSA: 0, ChinaSSA: 1, // Value-to-name mapping for convenience '-1': 'Invalid', 0: 'GlobalSSA', 1: 'ChinaSSA', }; module.exports = EAgreementType;