Make exporting more consistent

This commit is contained in:
Dolan
2017-09-19 15:51:55 +01:00
parent b98c103e45
commit ebbf6a99c1
2 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,4 @@
export { Document } from "./document"; export * from "./document";
export * from "./paragraph"; export * from "./paragraph";
export { Run } from "./run"; export * from "./run";
export { TextRun } from "./run/text-run";
export { PictureRun } from "./run/picture-run";
export { Table } from "./table"; export { Table } from "./table";
// Perhaps all run related stuff can be exported from run, instead of exporting Run, TextRun, PictureRun seperately.

View File

@ -1 +1,3 @@
export * from "./run"; export * from "./run";
export * from "./text-run";
export * from "./picture-run";