UNPKG

docx

Version:

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

14 lines (11 loc) 331 B
import { XmlAttributeComponent } from "file/xml-components"; export interface IExtentsAttributes { readonly cx?: number; readonly cy?: number; } export class ExtentsAttributes extends XmlAttributeComponent<IExtentsAttributes> { protected readonly xmlKeys = { cx: "cx", cy: "cy", }; }