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

11 lines
273 B
TypeScript
Raw Normal View History

2017-12-19 23:13:11 +00:00
import { XmlComponent } from "../../../../../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));
}
}