mirror of
https://github.com/DoctorMcKay/node-steamcommunity.git
synced 2025-01-14 21:10:28 +08:00
13 lines
219 B
JavaScript
13 lines
219 B
JavaScript
/**
|
|
* @enum EConfirmationType
|
|
*/
|
|
module.exports = {
|
|
// 1 is unknown, possibly "Invalid"
|
|
"Trade": 2,
|
|
"MarketListing": 3,
|
|
// 4 is opt-out or other like account confirmation?
|
|
|
|
"2": "Trade",
|
|
"3": "MarketListing"
|
|
};
|