Files
docx-js/ts/docx/run/run-components/drawing/index.ts
2017-03-12 23:31:43 +00:00

9 lines
175 B
TypeScript

import { XmlComponent } from "../../../xml-components";
export class Drawing extends XmlComponent {
constructor(imagePath: string) {
super("w:drawing");
}
}