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

11 lines
283 B
TypeScript

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