2018-08-21 07:19:46 -03:00
|
|
|
import { XmlComponent } from "file/xml-components";
|
|
|
|
|
2018-08-29 12:06:01 -03:00
|
|
|
import { TableOfContentsProperties } from "./properties";
|
|
|
|
|
|
|
|
export class TableOfContents extends XmlComponent {
|
|
|
|
private readonly properties: TableOfContentsProperties;
|
|
|
|
|
|
|
|
constructor(properties?: TableOfContentsProperties) {
|
|
|
|
super("w:std");
|
|
|
|
this.properties = properties || new TableOfContentsProperties();
|
|
|
|
}
|
|
|
|
}
|