Files
docx-js/ts/docx/run/properties.ts

14 lines
278 B
TypeScript
Raw Normal View History

2016-03-30 03:50:53 +01:00
import {XmlComponent, Attributes} from "../xml-components";
export class RunProperties {
private rPr: Array<XmlComponent>;
constructor() {
this.rPr = new Array<XmlComponent>();
}
2016-03-30 04:30:58 +01:00
push(item: XmlComponent) {
this.rPr.push(item);
}
2016-03-30 03:50:53 +01:00
}