UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

15 lines (12 loc) 299 B
import { XmlComponent } from "file/xml-components"; class FillRectangle extends XmlComponent { constructor() { super("a:fillRect"); } } export class Stretch extends XmlComponent { constructor() { super("a:stretch"); this.root.push(new FillRectangle()); } }