UNPKG

docx

Version:

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

12 lines (10 loc) 261 B
import { XmlAttributeComponent } from "file/xml-components"; export class ExtentAttributes extends XmlAttributeComponent<{ readonly cx?: number; readonly cy?: number; }> { protected readonly xmlKeys = { cx: "cx", cy: "cy", }; }