node-steamcommunity/resources/ESharedfileType.js
2023-05-14 18:52:52 +02:00

13 lines
194 B
JavaScript

/**
* @enum ESharedfileType
*/
module.exports = {
"Screenshot": 0,
"Artwork": 1,
"Guide": 2,
// Value-to-name mapping for convenience
"0": "Screenshot",
"1": "Artwork",
"2": "Guide"
};