11 lines
283 B
TypeScript
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));
|
|
}
|
|
}
|