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