Files
docx-js/ts/docx/run/run-components/drawing/index.ts

9 lines
158 B
TypeScript
Raw Normal View History

import { XmlComponent } from "../../../xml-components";
export class Drawing extends XmlComponent {
2017-03-12 21:30:46 +00:00
2017-03-11 18:21:31 +00:00
constructor() {
super("w:drawing");
}
2017-03-12 21:30:46 +00:00
}