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

11 lines
269 B
TypeScript

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