2018-08-31 10:22:40 -03:00
|
|
|
// import { TableOfContentsProperties } from "./properties";
|
|
|
|
import { Paragraph } from "../paragraph";
|
2018-08-21 07:19:46 -03:00
|
|
|
|
2018-08-31 10:22:40 -03:00
|
|
|
export class TableOfContents extends Paragraph {
|
|
|
|
// private readonly tocProperties: TableOfContentsProperties;
|
2018-08-29 12:06:01 -03:00
|
|
|
|
2018-08-31 10:22:40 -03:00
|
|
|
constructor(/*tocProperties?: TableOfContentsProperties*/) {
|
|
|
|
super();
|
|
|
|
// this.tocProperties = tocProperties || new TableOfContentsProperties();
|
2018-08-29 12:06:01 -03:00
|
|
|
}
|
|
|
|
}
|