Files
docx-js/src/file/drawing/extent/extent-attributes.ts
2021-03-15 00:11:39 +00:00

12 lines
261 B
TypeScript

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