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

11 lines
266 B
TypeScript
Raw Normal View History

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