From 4bc6ed0edaadf892edd008b35b0b935f86cfdc2a Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Sun, 12 Mar 2017 21:30:46 +0000 Subject: [PATCH] added more files to drawing --- ts/docx/run/run-components/drawing/index.ts | 4 ++-- ts/docx/run/run-components/drawing/inline.ts | 8 ++++++++ 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 ts/docx/run/run-components/drawing/inline.ts diff --git a/ts/docx/run/run-components/drawing/index.ts b/ts/docx/run/run-components/drawing/index.ts index 86b4bd87c1..61820442ed 100644 --- a/ts/docx/run/run-components/drawing/index.ts +++ b/ts/docx/run/run-components/drawing/index.ts @@ -1,8 +1,8 @@ import { XmlComponent } from "../../../xml-components"; export class Drawing extends XmlComponent { - + constructor() { super("w:drawing"); } -} \ No newline at end of file +} diff --git a/ts/docx/run/run-components/drawing/inline.ts b/ts/docx/run/run-components/drawing/inline.ts new file mode 100644 index 0000000000..47ce8dabcd --- /dev/null +++ b/ts/docx/run/run-components/drawing/inline.ts @@ -0,0 +1,8 @@ +import { XmlComponent } from "../../../xml-components"; + +export class Inline extends XmlComponent { + + constructor() { + super("w:drawing"); + } +}