Add footnotes class

This commit is contained in:
Dolan
2018-06-11 00:45:21 +01:00
parent b5b96506ae
commit 8cb8d3514a
5 changed files with 128 additions and 1 deletions

View File

@ -5,6 +5,7 @@ export interface ISpacingProperties {
after?: number;
before?: number;
line?: number;
lineRule?: string;
}
class SpacingAttributes extends XmlAttributeComponent<ISpacingProperties> {
@ -12,6 +13,7 @@ class SpacingAttributes extends XmlAttributeComponent<ISpacingProperties> {
after: "w:after",
before: "w:before",
line: "w:line",
lineRule: "w:lineRule",
};
}