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