// add a text content

import { CreateDocx } from "../../../build";
import * as fs from "fs";

const docx = new CreateDocx();

docx.addText("New content.");

docx.save().then(contents => {
    fs.writeFileSync("addText_1.docx", Buffer.from(contents));
});
