UNPKG

docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

14 lines (12 loc) 372 B
import { XmlComponent } from "file/xml-components"; import { DocGridAttributes } from "./doc-grid-attributes"; export class DocumentGrid extends XmlComponent { constructor(linePitch: number) { super("w:docGrid"); this.root.push( new DocGridAttributes({ linePitch: linePitch, }), ); } }