Files
docx-js/src/file/drawing/inline/index.ts
2017-12-30 20:25:16 +00:00

11 lines
259 B
TypeScript

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