isRunning.lua 397 B

1234567891011121314151617181920
  1. return {
  2. summary = 'Check if the Thread is running.',
  3. description = 'Returns whether or not the Thread is currently running.',
  4. arguments = {},
  5. returns = {
  6. running = {
  7. type = 'boolean',
  8. description = 'Whether or not the Thread is running.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'running' }
  15. }
  16. },
  17. related = {
  18. 'Thread:start'
  19. }
  20. }