Correctly exporting methods

This commit is contained in:
Dolan
2019-11-23 02:26:59 +00:00
parent bf1d10e893
commit b37aefdc8d
8 changed files with 15 additions and 11 deletions

View File

@ -1,7 +1,7 @@
// Footnotes
// Import from 'docx' rather than '../build' if you install from npm
import * as fs from "fs";
import { Document, Packer, Paragraph, TextRun, FootnoteReferenceRun } from "../build";
import { Document, FootnoteReferenceRun, Packer, Paragraph, TextRun } from "../build";
const doc = new Document();
@ -17,7 +17,9 @@ doc.addSection({
}),
],
}),
new Paragraph("Hello World").referenceFootnote(3),
new Paragraph({
children: [new TextRun("Hello World"), new FootnoteReferenceRun(3)],
}),
],
});