Files
docx-js/src/index.ts

7 lines
270 B
TypeScript
Raw Normal View History

// Internally, the wrapper is a 'File', but export to the end user as a 'Document'
// Use of 'File' also works
2018-09-19 00:37:11 +01:00
export { File as Document, TemplatedFile as TemplatedDocument } from "./file";
export * from "./file";
export * from "./export";
2018-08-29 18:36:48 +03:00
export * from "./importDocx";