Rename demo

This commit is contained in:
Dolan
2018-09-19 01:30:25 +01:00
parent 5fe4405d76
commit 4d7387524c

27
demo/demo28.ts Normal file
View File

@ -0,0 +1,27 @@
import * as fs from "fs";
import { ImportDocx, Packer, Paragraph, TemplatedDocument } from "../build";
const importDocx = new ImportDocx();
const filePath = "./demo/dotx/template.dotx";
fs.readFile(filePath, (err, data) => {
if (err) {
throw new Error(`Failed to read file ${filePath}.`);
}
importDocx.extract(data).then((templateDocument) => {
// This any needs fixing
const sectionProps = {
titlePage: true,
} as any;
const doc = new TemplatedDocument(templateDocument, undefined, sectionProps);
const paragraph = new Paragraph("Hello World");
doc.addParagraph(paragraph);
const packer = new Packer();
packer.toBuffer(doc).then((buffer) => {
fs.writeFileSync("My Document.docx", buffer);
});
});
});