2
0

getBlob.lua 373 B

12345678910111213141516
  1. return {
  2. summary = 'Get the bytes backing this Sound as a Blob.',
  3. description = 'Returns a Blob containing the raw bytes of the Sound.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'blob',
  8. type = 'Blob',
  9. description = 'The Blob instance containing the bytes for the `Sound`.'
  10. }
  11. },
  12. related = {
  13. 'Blob:getPointer',
  14. 'Image:getBlob'
  15. }
  16. }