wrote some inital code

This commit is contained in:
Sergio Mendonça
2018-08-22 10:30:19 -03:00
parent d5b6225a90
commit a6a8012b39
3 changed files with 13 additions and 3 deletions

3
.gitignore vendored
View File

@ -53,3 +53,6 @@ package-lock.json
# Documents
My Document.docx
# Temporary folder
tmp

View File

@ -1,3 +1,3 @@
import { XmlComponent } from "file/xml-components";
export class TableOfContentsProperties extends XmlComponent {}
export class TableOfContentsProperties {
public headingRange = "1-6";
}

View File

@ -0,0 +1,7 @@
import { expect } from "chai";
describe("Table of Contents", () => {
it("should be true", () => {
expect(1).to.be.equal(1);
});
});