From c33cdb450cb40d2a1ba1d6c0ebe47d65e1850c98 Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Sat, 11 Mar 2017 18:21:31 +0000 Subject: [PATCH] added initial constructor --- ts/docx/run/run-components/drawing/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ts/docx/run/run-components/drawing/index.ts b/ts/docx/run/run-components/drawing/index.ts index f86e12e58b..86b4bd87c1 100644 --- a/ts/docx/run/run-components/drawing/index.ts +++ b/ts/docx/run/run-components/drawing/index.ts @@ -1,5 +1,8 @@ import { XmlComponent } from "../../../xml-components"; export class Drawing extends XmlComponent { - + + constructor() { + super("w:drawing"); + } } \ No newline at end of file