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,13 @@
import { XmlComponent } from "../../../xml-components";
import { Inline } from "./inline";
export class Drawing extends XmlComponent {
constructor(imagePath: string) {
super("w:drawing");
// store in the document, then get Id
this.root.push(new Inline(5));
}
}