added styles

This commit is contained in:
Dolan Miu
2016-04-09 02:04:53 +01:00
parent e9696927bc
commit bf928393b5
9 changed files with 125 additions and 1 deletions

View File

@ -0,0 +1,17 @@
import {XmlComponent} from "../../docx/xml-components";
import {ParagraphPropertiesDefaults} from "./paragraph-properties";
import {RunPropertiesDefaults} from "./run-properties";
export class DocumentDefaults implements XmlComponent {
private docDefaults: Array<XmlComponent>;
xmlKeys = {
docDefaults: "w:docDefaults"
}
constructor() {
this.docDefaults = new Array<XmlComponent>();
this.docDefaults.push(new RunPropertiesDefaults());
this.docDefaults.push(new ParagraphPropertiesDefaults());
}
}