getSize.lua 287 B

1234567891011121314
  1. return {
  2. summary = 'Get the size of the Blob\'s data.',
  3. description = [[
  4. Returns the size of the Blob's contents, in bytes.
  5. ]],
  6. arguments = {},
  7. returns = {
  8. {
  9. name = 'bytes',
  10. type = 'number',
  11. description = 'The size of the Blob, in bytes.'
  12. }
  13. }
  14. }