Files
docx-js/build/file/drawing/inline/extent/extent-attributes.d.ts

12 lines
320 B
TypeScript
Raw Normal View History

2018-04-02 14:37:54 +03:00
import { XmlAttributeComponent } from "../../../../file/xml-components";
export interface IExtentAttributes {
cx?: number;
cy?: number;
}
export declare class ExtentAttributes extends XmlAttributeComponent<IExtentAttributes> {
protected xmlKeys: {
cx: string;
cy: string;
};
}