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