Files
DefinitelyTyped/types/pdfmake/pdfmake-tests.ts
2018-04-09 12:14:07 -07:00

11 lines
319 B
TypeScript

import * as pdfMake from 'pdfmake/build/pdfmake';
import * as pdfFonts from 'pdfmake/build/vfs_fonts';
const docDefinition = { content: 'This is an sample PDF printed with pdfMake' };
const createPdf = () => {
const pdf = pdfMake;
pdf.vfs = pdfFonts.pdfMake.vfs;
pdfMake.createPdf(docDefinition).download();
};