mirror of
https://github.com/DoctorMcKay/node-steamcommunity.git
synced 2025-01-31 11:30:11 +08:00
15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
/* eslint-disable */
|
|
|
|
/**
|
|
* @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"
|
|
};
|