Files
HowBadIsMyBatch/docs/SymptomsCausedByDrugs/js/PdfCreator.js
2024-07-15 23:23:00 +02:00

16 lines
676 B
JavaScript

class PdfCreator {
static createPdf() {
const documentDefinition = {
content: [
{ text: 'EU Safety Signal (All drugs)', fontSize: 16, alignment: 'center', margin: [0, 0, 0, 20], bold: true },
{ text: 'Worst Drugs', fontSize: 12, alignment: 'left', margin: [0, 10, 0, 10], bold: true },
{ text: 'table' },
{ text: 'Strongest Symptoms', fontSize: 12, alignment: 'left', margin: [0, 10, 0, 10], bold: true },
{ text: 'table' },
]
}
return pdfMake.createPdf(documentDefinition);
// pdfMake.createPdf(documentDefinition).download();
}
}