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 { GraphicData } from "./graphic-data";
export class Graphic extends XmlComponent {
constructor() {
constructor(referenceId: number) {
super("a:graphic");
this.root.push(new GraphicData(referenceId));
}
}