added styles
This commit is contained in:
15
ts/styles/defaults/paragraph-properties.ts
Normal file
15
ts/styles/defaults/paragraph-properties.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import {XmlComponent} from "../../docx/xml-components";
|
||||
import {ParagraphProperties} from "../../docx/paragraph/properties";
|
||||
|
||||
export class ParagraphPropertiesDefaults implements XmlComponent {
|
||||
private pPrDefault: Array<XmlComponent>;
|
||||
|
||||
xmlKeys = {
|
||||
pPrDefault: "w:pPrDefault"
|
||||
}
|
||||
|
||||
constructor() {
|
||||
this.pPrDefault = new Array<XmlComponent>();
|
||||
this.pPrDefault.push(new ParagraphProperties());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user