| 12345678910111213141516171819 |
- return {
- summary = 'Get the size of the Blob, in bytes.',
- description = [[
- Returns the size of the Blob's contents, in bytes.
- ]],
- arguments = {},
- returns = {
- bytes = {
- type = 'number',
- description = 'The size of the Blob, in bytes.'
- }
- },
- variants = {
- {
- arguments = {},
- returns = { 'bytes' }
- }
- }
- }
|