Mateo B
Results
3
comments of
Mateo B
Same problem
> Yes, this is not released as of yet > > Will be part of the next major version as this is a breaking API change @dolanmiu do you have...
I got the same error, this worked for me: ```ts patchDocument(fs.readFileSync("input.docx"), { outputType: "nodebuffer", patches: { test: { type: PatchType.PARAGRAPH, children: [new TextRun("test")], }, }, }).then((doc) => { fs.writeFileSync("output.docx", doc);...