UNPKG

docx

Version:

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

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