mirror of
https://github.com/DoctorMcKay/node-steamcommunity.git
synced 2025-03-24 06:00:07 +08:00
14 lines
195 B
JavaScript
14 lines
195 B
JavaScript
/**
|
|
* @enum ESharedFileType
|
|
*/
|
|
module.exports = {
|
|
"Screenshot": 0,
|
|
"Artwork": 1,
|
|
"Guide": 2,
|
|
|
|
// Value-to-name mapping for convenience
|
|
"0": "Screenshot",
|
|
"1": "Artwork",
|
|
"2": "Guide"
|
|
};
|