docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
12 lines (11 loc) • 338 B
TypeScript
import { XmlAttributeComponent } from "../../../../../../../../../file/xml-components";
export interface IExtentsAttributes {
cx?: number;
cy?: number;
}
export declare class ExtentsAttributes extends XmlAttributeComponent<IExtentsAttributes> {
protected xmlKeys: {
cx: string;
cy: string;
};
}