UNPKG

@joefitter/docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

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)); } }