* Download a file by its unique identifier * @param fileId UUID of the file to download * @returns File buffer and metadata
(fileId: string)
| 10 | * @returns File buffer and metadata |
| 11 | */ |
| 12 | downloadFile(fileId: string): Promise<{ |
| 13 | buffer: Buffer; |
| 14 | metadata: { |
| 15 | id: string; |
no outgoing calls
no test coverage detected