UNPKG

docx

Version:

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

12 lines (11 loc) 344 B
import { XmlAttributeComponent } from "../../../file/xml-components"; export interface IExtentAttributes { readonly cx?: number; readonly cy?: number; } export declare class ExtentAttributes extends XmlAttributeComponent<IExtentAttributes> { protected readonly xmlKeys: { cx: string; cy: string; }; }