Files
docx-js/src/file/table-of-contents/sdt-properties.ts
2018-09-20 10:47:10 -03:00

10 lines
245 B
TypeScript

import { XmlComponent } from "file/xml-components";
import { Alias } from "./alias";
export class SdtProperties extends XmlComponent {
constructor(alias: string) {
super("w:sdtPr");
this.root.push(new Alias(alias));
}
}