import {XmlComponent, Attributes} from "../../xml-components"; export class DocumentGrid implements XmlComponent { private docGrid: Array; xmlKeys = { docGrid: 'w:docGrid' } constructor() { this.docGrid = new Array(); this.docGrid.push(new Attributes({ linePitch: "360" })); } }