UNPKG

docx

Version:

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

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