123456789101112131415161718 |
- return {
- summary = 'Get the size of a file.',
- description = 'Returns the size of a file, in bytes.',
- arguments = {
- {
- name = 'file',
- type = 'string',
- description = 'The file.'
- }
- },
- returns = {
- {
- name = 'size',
- type = 'number',
- description = 'The size of the file, in bytes.'
- }
- }
- }
|