Files
docx-js/src/file/table-of-contents/sdt-properties.ts
2023-06-25 03:09:29 +01:00

13 lines
371 B
TypeScript

// http://www.datypic.com/sc/ooxml/e-w_sdtPr-1.html
import { StringValueElement, XmlComponent } from "@file/xml-components";
export class StructuredDocumentTagProperties extends XmlComponent {
public constructor(alias?: string) {
super("w:sdtPr");
if (alias) {
this.root.push(new StringValueElement("w:alias", alias));
}
}
}