UNPKG

docx

Version:

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

20 lines (15 loc) 437 B
import { XmlComponent } from "file/xml-components"; class DoNotExpandShiftReturn extends XmlComponent { constructor() { super("w:doNotExpandShiftReturn"); } } export class Compatibility extends XmlComponent { constructor() { super("w:compat"); } public doNotExpandShiftReturn(): Compatibility { this.root.push(new DoNotExpandShiftReturn()); return this; } }