created drawing file and refactored run components in components folder
This commit is contained in:
5
ts/docx/run/run-components/drawing/index.ts
Normal file
5
ts/docx/run/run-components/drawing/index.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { XmlComponent } from "../../../xml-components";
|
||||||
|
|
||||||
|
export class Drawing extends XmlComponent {
|
||||||
|
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
import { XmlComponent } from "../xml-components";
|
import { XmlComponent } from "../../xml-components";
|
||||||
|
|
||||||
export class Text extends XmlComponent {
|
export class Text extends XmlComponent {
|
||||||
|
|
@ -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 {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user