UNPKG

docx

Version:

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

11 lines (9 loc) 315 B
// http://www.datypic.com/sc/ooxml/e-w_sdtPr-1.html import { XmlComponent } from "file/xml-components"; import { Alias } from "./alias"; export class StructuredDocumentTagProperties extends XmlComponent { constructor(alias: string) { super("w:sdtPr"); this.root.push(new Alias(alias)); } }