Export formatting from paragraph folder

This commit is contained in:
Dolan
2017-07-29 01:15:33 +01:00
parent 70c4e89a65
commit be709d082c
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
export { Document } from "./document"; export { Document } from "./document";
export { Paragraph } from "./paragraph"; export * from "./paragraph";
export { Run } from "./run"; export { Run } from "./run";
export { TextRun } from "./run/text-run"; export { TextRun } from "./run/text-run";
export { PictureRun } from "./run/picture-run"; export { PictureRun } from "./run/picture-run";

View File

@ -16,6 +16,8 @@ import { Style } from "./style";
import { LeftTabStop, MaxRightTabStop } from "./tab-stop"; import { LeftTabStop, MaxRightTabStop } from "./tab-stop";
import { NumberProperties } from "./unordered-list"; import { NumberProperties } from "./unordered-list";
export * from "./formatting";
export class Paragraph extends XmlComponent { export class Paragraph extends XmlComponent {
private properties: ParagraphProperties; private properties: ParagraphProperties;