getName.lua 365 B

123456789101112131415
  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. {
  10. name = 'name',
  11. type = 'string',
  12. description = 'The name of the Blob.'
  13. }
  14. }
  15. }