Add sharedfile type enum

This commit is contained in:
3urobeat 2023-05-14 14:50:32 +02:00
parent c92801d25e
commit c8642865a1
No known key found for this signature in database
GPG Key ID: 6842D80775A4E952

View File

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