Files
docx-js/src/file/table-of-contents/sdt-properties.ts
2018-09-26 02:17:39 +01:00

11 lines
315 B
TypeScript

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