Files
docx-js/src/file/drawing/inline/graphic/graphic-data/pic/index.ts

11 lines
263 B
TypeScript
Raw Normal View History

import { XmlComponent } from "file/xml-components";
2017-03-13 00:02:56 +00:00
import { BlipFill } from "./blip/blip-fill";
export class Pic extends XmlComponent {
constructor(referenceId: number) {
super("pic:pic");
this.root.push(new BlipFill(referenceId));
}
}