import {XmlComponent, Attributes} from "../../xml-components"; export class Columns implements XmlComponent { private cols: Array; xmlKeys = { cols: 'w:cols' } constructor() { this.cols = new Array(); this.cols.push(new Attributes({ space: "708" })); } }