Files
docx-js/src/file/drawing/extent/extent-attributes.ts
Dolan Miu 982d923553 Improve import alias
@file/ and @export/ instead of file/ and export/ etc
2022-06-26 23:26:42 +01:00

12 lines
262 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",
};
}