// generate and save a DOCX file

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

const docx = new CreateDocx();
docx.save().then(contents => {
    fs.writeFileSync("save_1.docx", Buffer.from(contents));
});
