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) 308 B
import { XmlComponent } from "file/xml-components"; import { GraphicFrameLocks } from "./graphic-frame-locks/graphic-frame-locks"; export class GraphicFrameProperties extends XmlComponent { constructor() { super("wp:cNvGraphicFramePr"); this.root.push(new GraphicFrameLocks()); } }