From 733775d3b9da69e10aafc3f1062675901d2ba521 Mon Sep 17 00:00:00 2001 From: Dolan Date: Fri, 5 Oct 2018 00:08:14 +0100 Subject: [PATCH] Rename demo --- demo/{demo29.ts => demo30.ts} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename demo/{demo29.ts => demo30.ts} (95%) 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); }); }); - });