diff --git a/demo/demo27.ts b/demo/demo27.ts index 01d0b5a559..062b4a4285 100644 --- a/demo/demo27.ts +++ b/demo/demo27.ts @@ -10,9 +10,10 @@ fs.readFile(filePath, (err, data) => { } importDocx.extract(data).then((templateDocument) => { + // This any needs fixing const options = { templateDocument, - }; + } as any; const doc = new Document(options); const paragraph = new Paragraph("Hello World");