11 lines
315 B
TypeScript
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));
|
|
}
|
|
}
|