123456789101112131415161718192021222324252627282930 |
- /**
- * @typedef {number} BaseDirectory
- */
- /**
- * @enum {BaseDirectory}
- */
- const Dir = {
- Audio: 1,
- Cache: 2,
- Config: 3,
- Data: 4,
- LocalData: 5,
- Desktop: 6,
- Document: 7,
- Download: 8,
- Executable: 9,
- Font: 10,
- Home: 11,
- Picture: 12,
- Public: 13,
- Runtime: 14,
- Template: 15,
- Video: 16,
- Resource: 17,
- App: 18
- }
- export {
- Dir
- }
|