Add footnote support to API

This commit is contained in:
Dolan
2018-06-25 19:49:46 +01:00
parent 369ec9c30b
commit 99290d646e
6 changed files with 37 additions and 12 deletions

View File

@ -163,6 +163,10 @@ export class File {
return hyperlink;
}
public createFootnote(paragraph: Paragraph): void {
this.footNotes.createFootNote(paragraph);
}
public get Document(): Document {
return this.document;
}