Download document file content
client.documents.download(stringid, RequestOptionsoptions?): Response
/documents/{id}/download
Download the binary content of the document file
Parameters
id: string
Returns
unnamed_schema_1 = Response
Download document file content
import Luminary from 'withluminary';
const client = new Luminary();
const response = await client.documents.download('id');
console.log(response);
const content = await response.blob();
console.log(content);