import {XmlComponent, Attributes} from "../xml-components"; class Border implements XmlComponent { private bottom: Array; constructor() { this.bottom = new Array(); this.bottom.push(new Attributes({ color: "auto", space: "1", val: "single", sz: "6" })); } } export class ThematicBreak { private pBdr: Array; constructor() { this.pBdr = new Array(); this.pBdr.push(new Border()); } }