import {XmlComponent, Attributes, Run} from "../xml-components"; class Break implements XmlComponent { private br: Array; constructor() { this.br = new Array(); this.br.push(new Attributes({ type: "page" })) } } export class PageBreak extends Run { constructor() { super(); this.r.push(new Break()); } }