getSize.lua 357 B

12345678910111213141516171819
  1. return {
  2. summary = 'Get the size of the Blob, in bytes.',
  3. description = [[
  4. Returns the size of the Blob's contents, in bytes.
  5. ]],
  6. arguments = {},
  7. returns = {
  8. bytes = {
  9. type = 'number',
  10. description = 'The size of the Blob, in bytes.'
  11. }
  12. },
  13. variants = {
  14. {
  15. arguments = {},
  16. returns = { 'bytes' }
  17. }
  18. }
  19. }