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

18 lines
348 B
TypeScript
Raw Normal View History

2016-03-30 03:50:53 +01:00
import {XmlComponent, Attributes} from "../xml-components";
2016-04-03 01:44:18 +01:00
export class RunProperties implements XmlComponent {
2016-03-30 03:50:53 +01:00
private rPr: Array<XmlComponent>;
2016-04-03 01:44:18 +01:00
xmlKeys = {
rPr: 'w:rPr'
}
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
}