dir.js 358 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * @typedef {number} BaseDirectory
  3. */
  4. /**
  5. * @enum {BaseDirectory}
  6. */
  7. const Dir = {
  8. Audio: 1,
  9. Cache: 2,
  10. Config: 3,
  11. Data: 4,
  12. LocalData: 5,
  13. Desktop: 6,
  14. Document: 7,
  15. Download: 8,
  16. Executable: 9,
  17. Font: 10,
  18. Home: 11,
  19. Picture: 12,
  20. Public: 13,
  21. Runtime: 14,
  22. Template: 15,
  23. Video: 16,
  24. Resource: 17,
  25. App: 18
  26. }
  27. export {
  28. Dir
  29. }