Change docx folder to more appropriate "file" folder
This commit is contained in:
10
src/file/drawing/inline/graphic/graphic-data/index.ts
Normal file
10
src/file/drawing/inline/graphic/graphic-data/index.ts
Normal file
@ -0,0 +1,10 @@
|
||||
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));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user