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"); + } +}