Files
docx-js/ts/docx/run/run-components/drawing/inline/index.ts
2017-03-13 00:02:56 +00:00

11 lines
266 B
TypeScript

import { XmlComponent } from "../../../../xml-components";
import { Graphic } from "./graphic";
export class Inline extends XmlComponent {
constructor(referenceId: number) {
super("wp:inline");
this.root.push(new Graphic(referenceId));
}
}