getOS.lua 285 B

123456789101112
  1. return {
  2. summary = 'Get the current operating system.',
  3. description = 'Returns the current operating system.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'os',
  8. type = 'string',
  9. description = 'Either "Windows", "macOS", "Linux", "Android" or "Web".'
  10. }
  11. }
  12. }