mirror of
https://github.com/DoctorMcKay/node-steamcommunity.git
synced 2025-01-15 05:21:30 +08:00
13 lines
194 B
JavaScript
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"
|
|
}; |