getName.lua 432 B

1234567891011121314151617181920
  1. return {
  2. summary = 'Get the label of the Blob.',
  3. description = [[
  4. Returns the filename the Blob was loaded from, or the custom name given to it when it was
  5. created. This label is also used in error messages.
  6. ]],
  7. arguments = {},
  8. returns = {
  9. name = {
  10. type = 'string',
  11. description = 'The name of the Blob.'
  12. }
  13. },
  14. variants = {
  15. {
  16. arguments = {},
  17. returns = { 'name' }
  18. }
  19. }
  20. }