UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

11 lines (8 loc) 264 B
import { XmlComponent } from "file/xml-components"; import { PicLocks } from "./pic-locks/pic-locks"; export class ChildNonVisualProperties extends XmlComponent { constructor() { super("pic:cNvPicPr"); this.root.push(new PicLocks()); } }