added the remaining classes required

This commit is contained in:
Dolan Miu
2017-03-13 00:02:56 +00:00
parent 34ce662f70
commit fa44acca1b
8 changed files with 58 additions and 5 deletions

View File

@ -1,8 +1,10 @@
import { XmlComponent } from "../../../../xml-components";
import { Graphic } from "./graphic";
export class Inline extends XmlComponent {
constructor() {
constructor(referenceId: number) {
super("wp:inline");
this.root.push(new Graphic(referenceId));
}
}