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

14 lines
276 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>;
2016-03-30 04:32:51 +01:00
2016-03-30 03:50:53 +01:00
constructor() {
this.rPr = new Array<XmlComponent>();
}
2016-03-30 04:32:51 +01:00
push(item: XmlComponent): void {
2016-03-30 04:30:58 +01:00
this.rPr.push(item);
}
2016-03-30 03:50:53 +01:00
}