wrote some inital code
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@ -53,3 +53,6 @@ package-lock.json
|
|||||||
|
|
||||||
# Documents
|
# Documents
|
||||||
My Document.docx
|
My Document.docx
|
||||||
|
|
||||||
|
# Temporary folder
|
||||||
|
tmp
|
@ -1,3 +1,3 @@
|
|||||||
import { XmlComponent } from "file/xml-components";
|
export class TableOfContentsProperties {
|
||||||
|
public headingRange = "1-6";
|
||||||
export class TableOfContentsProperties extends XmlComponent {}
|
}
|
||||||
|
7
src/file/table-of-contents/table-of-contents.spec.ts
Normal file
7
src/file/table-of-contents/table-of-contents.spec.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { expect } from "chai";
|
||||||
|
|
||||||
|
describe("Table of Contents", () => {
|
||||||
|
it("should be true", () => {
|
||||||
|
expect(1).to.be.equal(1);
|
||||||
|
});
|
||||||
|
});
|
Reference in New Issue
Block a user