wrote some initial code

This commit is contained in:
Sergio Mendonça
2018-08-29 12:06:01 -03:00
parent 4f8ecf631b
commit 8d83219bb6
3 changed files with 32 additions and 3 deletions

View File

@ -1,3 +1,12 @@
import { XmlComponent } from "file/xml-components";
export class TableOfContents extends XmlComponent {}
import { TableOfContentsProperties } from "./properties";
export class TableOfContents extends XmlComponent {
private readonly properties: TableOfContentsProperties;
constructor(properties?: TableOfContentsProperties) {
super("w:std");
this.properties = properties || new TableOfContentsProperties();
}
}