From be709d082c64bb03224339b3cdf98183b32edf88 Mon Sep 17 00:00:00 2001 From: Dolan Date: Sat, 29 Jul 2017 01:15:33 +0100 Subject: [PATCH] Export formatting from paragraph folder --- ts/docx/index.ts | 2 +- ts/docx/paragraph/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) 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;