diff --git a/demo/demo29.ts b/demo/demo30.ts similarity index 95% rename from demo/demo29.ts rename to demo/demo30.ts index 8949e17af5..d5d2300c4c 100644 --- a/demo/demo29.ts +++ b/demo/demo30.ts @@ -16,7 +16,7 @@ fs.readFile(filePath, (err, data) => { } as any; const doc = new Document(undefined, sectionProps, { - template: templateDocument + template: templateDocument, }); const paragraph = new Paragraph("Hello World"); doc.addParagraph(paragraph); @@ -26,5 +26,4 @@ fs.readFile(filePath, (err, data) => { fs.writeFileSync("My Document.docx", buffer); }); }); - });