Files
docx-js/ts/docx/index.ts

8 lines
349 B
TypeScript
Raw Normal View History

2017-03-08 21:36:09 +00:00
export { Document } from "./document";
export { Paragraph } from "./paragraph";
export { Run } from "./run";
export { TextRun } from "./run/text-run";
export { PictureRun } from "./run/picture-run";
export { Table } from "./table";
// Perhaps all run related stuff can be exported from run, instead of exporting Run, TextRun, PictureRun seperately.