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

12 lines
262 B
TypeScript
Raw Normal View History

import { XmlAttributeComponent } from "@file/xml-components";
2021-03-15 00:11:39 +00:00
export class ExtentAttributes extends XmlAttributeComponent<{
readonly cx?: number;
readonly cy?: number;
2021-03-15 00:11:39 +00:00
}> {
protected readonly xmlKeys = {
cx: "cx",
cy: "cy",
};
}