wrote some initial code
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user