diff --git a/ts/docx/index.ts b/ts/docx/index.ts index 1e837b8340..299cf9463d 100644 --- a/ts/docx/index.ts +++ b/ts/docx/index.ts @@ -1,5 +1,5 @@ export { Document } from "./document"; -export { Paragraph } from "./paragraph"; +export * from "./paragraph"; export { Run } from "./run"; export { TextRun } from "./run/text-run"; export { PictureRun } from "./run/picture-run"; diff --git a/ts/docx/paragraph/index.ts b/ts/docx/paragraph/index.ts index fcac4043fd..66449451ee 100644 --- a/ts/docx/paragraph/index.ts +++ b/ts/docx/paragraph/index.ts @@ -16,6 +16,8 @@ import { Style } from "./style"; import { LeftTabStop, MaxRightTabStop } from "./tab-stop"; import { NumberProperties } from "./unordered-list"; +export * from "./formatting"; + export class Paragraph extends XmlComponent { private properties: ParagraphProperties;