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