added initial constructor

This commit is contained in:
Dolan Miu
2017-03-11 18:21:31 +00:00
parent 62b6b33254
commit c33cdb450c

View File

@ -1,5 +1,8 @@
import { XmlComponent } from "../../../xml-components";
export class Drawing extends XmlComponent {
constructor() {
super("w:drawing");
}
}