diff --git a/src/file/relationships/attributes.ts b/src/file/relationships/attributes.ts index 14d88b7a96..8765d314f6 100644 --- a/src/file/relationships/attributes.ts +++ b/src/file/relationships/attributes.ts @@ -1,4 +1,4 @@ -import { XmlAttributeComponent } from "../docx/xml-components"; +import { XmlAttributeComponent } from "../xml-components"; export interface IRelationshipsAttributesProperties { xmlns: string; diff --git a/src/file/relationships/relationships.ts b/src/file/relationships/relationships.ts index e2c27f36e8..972e056263 100644 --- a/src/file/relationships/relationships.ts +++ b/src/file/relationships/relationships.ts @@ -1,4 +1,4 @@ -import { XmlComponent } from "../docx/xml-components"; +import { XmlComponent } from "../xml-components"; import { RelationshipsAttributes } from "./attributes"; export class Relationships extends XmlComponent { diff --git a/src/file/styles/latent-styles/exceptions.ts b/src/file/styles/latent-styles/exceptions.ts index ceaf5477fe..e547aeb352 100644 --- a/src/file/styles/latent-styles/exceptions.ts +++ b/src/file/styles/latent-styles/exceptions.ts @@ -1,4 +1,4 @@ -import { XmlAttributeComponent, XmlComponent } from "../../docx/xml-components"; +import { XmlAttributeComponent, XmlComponent } from "../../xml-components"; export interface ILatentStyleExceptionAttributesProperties { name?: string; diff --git a/src/file/styles/latent-styles/index.ts b/src/file/styles/latent-styles/index.ts index 583ab1e0e0..6cde391eb2 100644 --- a/src/file/styles/latent-styles/index.ts +++ b/src/file/styles/latent-styles/index.ts @@ -1,4 +1,4 @@ -import { XmlComponent } from "../../docx/xml-components"; +import { XmlComponent } from "../../xml-components"; import { LatentStyleException } from "./exceptions"; export class LatentStyles extends XmlComponent {