created drawing file and refactored run components in components folder

This commit is contained in:
Dolan Miu
2017-03-11 16:56:35 +00:00
parent 64ab91765a
commit 62b6b33254
3 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,5 @@
import { XmlComponent } from "../../../xml-components";
export class Drawing extends XmlComponent {
}

View File

@ -1,4 +1,4 @@
import { XmlComponent } from "../xml-components"; import { XmlComponent } from "../../xml-components";
export class Text extends XmlComponent { export class Text extends XmlComponent {

View File

@ -1,5 +1,5 @@
import { Run } from "../run"; import { Run } from "../run";
import { Text } from "./text"; import { Text } from "./run-components/text";
export class TextRun extends Run { export class TextRun extends Run {