Files
docx-js/ts/docx/run/properties.ts
2016-03-30 04:32:51 +01:00

14 lines
276 B
TypeScript

import {XmlComponent, Attributes} from "../xml-components";
export class RunProperties {
private rPr: Array<XmlComponent>;
constructor() {
this.rPr = new Array<XmlComponent>();
}
push(item: XmlComponent): void {
this.rPr.push(item);
}
}