Files
docx-js/src/file/drawing/extent/extent-attributes.ts

14 lines
288 B
TypeScript
Raw Normal View History

import { XmlAttributeComponent } from "file/xml-components";
export interface IExtentAttributes {
cx?: number;
cy?: number;
}
export class ExtentAttributes extends XmlAttributeComponent<IExtentAttributes> {
protected xmlKeys = {
cx: "cx",
cy: "cy",
};
}