isFused.lua 398 B

123456789101112131415161718
  1. return {
  2. tag = 'filesystem-virtual',
  3. summary = 'Check if the project is fused.',
  4. description = 'Returns whether the current project source is fused to the executable.',
  5. arguments = {},
  6. returns = {
  7. fused = {
  8. type = 'boolean',
  9. description = 'Whether or not the project is fused.'
  10. }
  11. },
  12. variants = {
  13. {
  14. arguments = {},
  15. returns = { 'fused' }
  16. }
  17. }
  18. }