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

13 lines
420 B
JavaScript

class PdfCreator {
static createPdf() {
const documentDefinition = {
content: [
{ text: 'Customizing Page Size and Orientation', fontSize: 16, bold: true },
{ text: 'This PDF has custom page size and orientation.' },
]
}
return pdfMake.createPdf(documentDefinition);
// pdfMake.createPdf(documentDefinition).download();
}
}