13 lines
420 B
JavaScript
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();
|
|
}
|
|
} |