11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
import { XmlComponent } from "../../../../xml-components";
|
|
import { Graphic } from "./graphic";
|
|
|
|
export class Inline extends XmlComponent {
|
|
|
|
constructor(referenceId: number) {
|
|
super("wp:inline");
|
|
this.root.push(new Graphic(referenceId));
|
|
}
|
|
}
|