Files
docx-js/src/file/table-of-contents/table-of-contents.ts

13 lines
388 B
TypeScript
Raw Normal View History

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